![]() |
Possiblity of using a few trig functions
Do you guys think there will be an problems if I used like 4 trig function on 28.6 ms loop? If I put the trig functions in the spin function functions would it work better? Would using a look up table for sin cos trig and arctan use up a lot of space?
|
Re: Possiblity of using a few trig functions
Quote:
-Kevin |
Re: Possiblity of using a few trig functions
Quote:
|
Re: Possiblity of using a few trig functions
Quote:
|
Re: Possiblity of using a few trig functions
I would not expect abs to be take very many processors cycles, could be written as such,
int abs (int num) { if(num<0) { num=(-1)*num; } return(num); } |
| All times are GMT -5. The time now is 23:20. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi