Author Topic: Math  (Read 5820 times)

0 Members and 1 Guest are viewing this topic.

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: Math
« Reply #15 on: September 18, 2010, 07:28:38 pm »
I mean that you'll still be using fixed point numbers, but often you can get away with not needing fixed point operations.  To multiply or divide your fixed point number by an integer for instance is not the ** operation but is actually the regular multiplication which is what calc84maniac was talking about.  Sine and Cosine multiplication can also be done without the ** operation like I did in the cube example since you don't care about the decimal part of the number when drawing to the screen anyway so it doesn't matter that it gets clipped off.
___Axe_Parser___
Today the calculator, tomorrow the world!

SirCmpwn

  • Guest
Re: Math
« Reply #16 on: September 18, 2010, 07:31:45 pm »
Ah, I understand what you're saying now.  Thanks!