10 lines
173 B
C
10 lines
173 B
C
#ifndef __MATH_H__
|
|
#define __MATH_H__
|
|
#include "stdint.h"
|
|
|
|
#define FULL_CIRCLE 32768
|
|
|
|
int32_t sin(int32_t value);
|
|
int32_t cos(int32_t value);
|
|
|
|
#endif // !__MATH_H__
|