Search:

Type: Posts; User: helloworld922

Search: Search took 0.12 seconds.

  1. [SOLVED] Re: Why is my float automatically rounding and how do i get it to stop

    Depends on what your needs are (float for memory efficiency, doubles for precision). I'm still not quite sure what your code is suppose to be doing. What is the higher-level problem you're trying to...
  2. [SOLVED] Re: Why is my float automatically rounding and how do i get it to stop

    Just because you're using doubles in loops doesn't mean you have to keep track of all the doubles used, just the ones for that iterations.

    So for example:

    for(int i = 0; i < 100; ++i)
    {
    ...
Results 1 to 2 of 2