mirror of
https://codeberg.org/uzu/strudel
synced 2026-09-06 07:05:12 -04:00
8 lines
148 B
C
8 lines
148 B
C
#include <math.h>
|
|
#include <emscripten.h>
|
|
|
|
EMSCRIPTEN_KEEPALIVE
|
|
double saw(double t, double f) {
|
|
return fmod((f * t * 1.0), 1.0) - 0.5 * 2.0;
|
|
}
|