Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of priustroller by
fastmath.h@9:d3b70c15baa9, 2015-03-06 (annotated)
- Committer:
- nki
- Date:
- Fri Mar 06 19:12:53 2015 +0000
- Revision:
- 9:d3b70c15baa9
loop is closed.;
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 |
