1

Dependencies:   mbed-dev-f303 FastPWM3

FastMath/FastMath.h

Committer:
Jasper_gu
Date:
2020-08-14
Revision:
56:d34e4540ec12
Parent:
51:b0a3ef66ea3d

File content as of revision 56:d34e4540ec12:

#ifndef __FASTMATH_H
#define __FASTMATH_H

#include "LUT.h"

namespace FastMath{
    float FastSin(float theta);
    float FastCos(float theta);
    int   Sgn(float d);
    };

#endif