a fork of priustroller

Dependencies:   mbed

Fork of priustroller_current by N K

util/fastmath.h

Committer:
nki
Date:
2015-05-21
Revision:
55:f102d271e808
Parent:
11:dccbaa9274c5

File content as of revision 55:f102d271e808:

#ifndef __FASTMATH_H
#define __FASTMATH_H

#include "includes.h"
#include "lut.h"

namespace FastMath {
    float FastSin(float theta);
    float FastCos(float theta);
    float FastSin01(float theta);
    float FastCos01(float theta);
};

#endif