shithub: pt2-clone

ref: f6f4566fb88896f4449d897fcd4e246cd42117da
dir: /src/pt2_math.h/

View raw version
#pragma once

#include <stdint.h>
#include <stdbool.h>

// adding this prevents denormalized numbers, which is slow
#define DENORMAL_OFFSET 1e-20

#define PT2_PI 3.14159265358979323846264338327950288
#define PT2_TWO_PI 6.28318530717958647692528676655900576

double pt2_sqrt(double x);
double pt2_tan(double x);
double pt2_cos(double x);
double pt2_sin(double x);