mirror of
https://github.com/rene-dev/stmbl.git
synced 2024-12-18 22:52:08 +00:00
7 lines
202 B
C
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); |