Code Monkey home page Code Monkey logo

Comments (2)

64 avatar 64 commented on July 20, 2024

I think it's just a remnant from a time when I had the scale set differently (most likely to 1000000), and hardcoded in the number 6 as a temporary hack.

All that line is doing is making sure that if we try to convert a number like 0.0000000000001 to fixed point, it ignores everything past the first few digits of the fractional part, so it just becomes 0. You can see in the code below that the expression frac_digits - frac_length would become negative if frac_length > frac_digits, which we want to avoid, so chopping off anything past the first few characters is a simple way to ensure this doesn't happen (effectively performing frac_length = min(frac_length, 6)).

Instead of 6 it should be frac_digits now (which has value 8 at current scale). There should be no difference between rounding to 6dp vs 8dp here, which is why I didn't notice this line was wrong until you mentioned it.

from cmake-raytracer.

mataha avatar mataha commented on July 20, 2024

That also did cross my mind (though the commit that introduced that line had scale set to 10^8 already), but thanks for clarifying!

from cmake-raytracer.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.