stmbl/shared/angle.h

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);