working-est copy with class-based code. still open loop

Dependencies:   mbed

Fork of analoghalls6 by N K

fastmath.h

Committer:
nki
Date:
2015-03-08
Revision:
10:b4abecccec7a
Parent:
9:d3b70c15baa9

File content as of revision 10:b4abecccec7a:

#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