otamesi

Dependencies:   mbed

Committer:
seangshim
Date:
Sat Feb 16 05:40:24 2019 +0000
Revision:
41:7c537a922510
Parent:
18:2a47ed430cfe
nei

Who changed what in which revision?

UserRevisionLine numberNew contents of line
seangshim 18:2a47ed430cfe 1 #ifndef INCLUDED_MATH_H
seangshim 18:2a47ed430cfe 2 #define INCLUDED_MATH_H
seangshim 18:2a47ed430cfe 3
seangshim 18:2a47ed430cfe 4 extern const float gPI;
seangshim 18:2a47ed430cfe 5
seangshim 18:2a47ed430cfe 6 float convertRange( float in, float oldMin, float oldMax, float newMin, float newMax );
seangshim 18:2a47ed430cfe 7 float convertRangePlusMinusPi( float deg );
seangshim 18:2a47ed430cfe 8 bool isNear( float a, float b, float error );
seangshim 18:2a47ed430cfe 9
seangshim 18:2a47ed430cfe 10 #endif