1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-19 07:02:13 +00:00
stmbl/shared/angle.h
2017-11-04 02:26:51 +01:00

7 lines
202 B
C

#pragma once
float minus(float a, float b);
float mod(float a);
int quadrant(float a);
void sincos_fast(float x, float *sin, float *cos);
float err_filter(float *ctx, float max, float dens, float err);