N K
/
GaNtroller
a fork of priustroller
Fork of priustroller_current by
util/fastmath.h@11:dccbaa9274c5, 2015-03-08 (annotated)
- Committer:
- bwang
- Date:
- Sun Mar 08 08:37:38 2015 +0000
- Revision:
- 11:dccbaa9274c5
- Parent:
- fastmath.h@9:d3b70c15baa9
--Initial Commit: 03-08-2015 new context-based code; no more timers (=easier debugging)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nki | 9:d3b70c15baa9 | 1 | #ifndef __FASTMATH_H |
nki | 9:d3b70c15baa9 | 2 | #define __FASTMATH_H |
nki | 9:d3b70c15baa9 | 3 | |
nki | 9:d3b70c15baa9 | 4 | #include "includes.h" |
nki | 9:d3b70c15baa9 | 5 | #include "lut.h" |
nki | 9:d3b70c15baa9 | 6 | |
nki | 9:d3b70c15baa9 | 7 | namespace FastMath { |
nki | 9:d3b70c15baa9 | 8 | float FastSin(float theta); |
nki | 9:d3b70c15baa9 | 9 | float FastCos(float theta); |
nki | 9:d3b70c15baa9 | 10 | float FastSin01(float theta); |
nki | 9:d3b70c15baa9 | 11 | float FastCos01(float theta); |
nki | 9:d3b70c15baa9 | 12 | }; |
nki | 9:d3b70c15baa9 | 13 | |
nki | 9:d3b70c15baa9 | 14 | #endif |