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.
FastMath/FastMath.h@6:3e6d09f56278, 2019-11-19 (annotated)
- Committer:
- Rushu
- Date:
- Tue Nov 19 09:00:12 2019 +0000
- Revision:
- 6:3e6d09f56278
add 200ms reference trajectory divided.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Rushu | 6:3e6d09f56278 | 1 | #ifndef __FASTMATH_H |
Rushu | 6:3e6d09f56278 | 2 | #define __FASTMATH_H |
Rushu | 6:3e6d09f56278 | 3 | |
Rushu | 6:3e6d09f56278 | 4 | #include "LUT.h" |
Rushu | 6:3e6d09f56278 | 5 | |
Rushu | 6:3e6d09f56278 | 6 | namespace FastMath{ |
Rushu | 6:3e6d09f56278 | 7 | float FastSin(float theta); |
Rushu | 6:3e6d09f56278 | 8 | float FastCos(float theta); |
Rushu | 6:3e6d09f56278 | 9 | int Sgn(float d); |
Rushu | 6:3e6d09f56278 | 10 | }; |
Rushu | 6:3e6d09f56278 | 11 | |
Rushu | 6:3e6d09f56278 | 12 | #endif |