aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libc/inc')
-rw-r--r--libs/libc/inc/math.h36
-rw-r--r--libs/libc/inc/vec.h38
2 files changed, 58 insertions, 16 deletions
diff --git a/libs/libc/inc/math.h b/libs/libc/inc/math.h
index 813ebf1..4d21e88 100644
--- a/libs/libc/inc/math.h
+++ b/libs/libc/inc/math.h
@@ -17,21 +17,25 @@
#define M_PI_2 1.57079632679489661923
#define M_PI_4 0.78539816339744830962
-f32 powf(f32 base, f32 exp);
-f64 pow(f64 base, f64 exp);
-f32 sqrtf(f32 num);
-f64 sqrt(f64 num);
-
-f32 lerpf(f32 from, f32 to, f32 trans);
-f64 lerp(f64 from, f64 to, f64 trans);
-f32 blerpf(f32 a, f32 b, f32 c, f32 d, f32 transx, f32 transy);
-f64 blerp(f64 a, f64 b, f64 c, f64 d, f64 transx, f64 transy);
-
-f32 sinf(f32 angle);
-f64 sin(f64 angle);
-f32 cosf(f32 angle);
-f64 cos(f64 angle);
-f32 tanf(f32 angle);
-f64 tan(f64 angle);
+f64 mceil(f64 x);
+f64 mfloor(f64 x);
+
+f64 mexp(f64 exp);
+f64 mexp2(f64 exp);
+
+f64 mlog(f64 x);
+f64 mlog2(f64 x);
+
+f64 mpow(f64 base, f64 exp);
+f64 msqrt(f64 num);
+
+f64 mcubic(f64 x, f64 a, f64 b, f64 c, f64 d);
+
+f64 mlerp(f64 from, f64 to, f64 trans);
+f64 mblerp(f64 a, f64 b, f64 c, f64 d, f64 transx, f64 transy);
+
+f64 msin(f64 angle);
+f64 mcos(f64 angle);
+f64 mtan(f64 angle);
#endif
diff --git a/libs/libc/inc/vec.h b/libs/libc/inc/vec.h
index bcd4cca..b2755ae 100644
--- a/libs/libc/inc/vec.h
+++ b/libs/libc/inc/vec.h
@@ -5,6 +5,10 @@
#include <def.h>
+/**
+ * Unsigned 32
+ */
+
typedef struct vec2 {
u32 x, y;
} vec2;
@@ -35,4 +39,38 @@ typedef struct vec3 {
((vec3){ a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x })
#define vec3_sum(a) ((u32)(a.x + a.y + a.z))
+/**
+ * Floating 32
+ */
+
+typedef struct vec2f {
+ f64 x, y;
+} vec2f;
+
+typedef struct vec3f {
+ f64 x, y, z;
+} vec3f;
+
+#define vec2f(x, y) ((vec2f){ (x), (y) })
+#define vec2fto3f(a, z) ((vec3f){ a.x, a.y, (z) })
+#define vec2f_add(a, b) ((vec2f){ a.x + b.x, a.y + b.y })
+#define vec2f_sub(a, b) ((vec2f){ a.x - b.x, a.y - b.y })
+#define vec2f_mul(a, b) ((vec2f){ a.x * (b), a.y * (b) })
+#define vec2f_div(a, b) ((vec2f){ a.x / (b), a.y / (b) })
+#define vec2f_dot(a, b) ((f64)(a.x * b.x + a.y * b.y))
+#define vec2f_eq(a, b) (a.x == b.x && a.y == b.y)
+#define vec2f_sum(a) ((f64)(a.x + a.y))
+
+#define vec3f(x, y, z) ((vec3f){ (x), (y), (z) })
+#define vec3fto2f(a) ((vec2f){ a.x, a.y })
+#define vec3f_add(a, b) ((vec3f){ a.x + b.x, a.y + b.y, a.z + b.z })
+#define vec3f_sub(a, b) ((vec3f){ a.x - b.x, a.y - b.y, a.z - b.z })
+#define vec3f_mul(a, b) ((vec3f){ a.x * (b), a.y * (b), a.z * (b) })
+#define vec3f_div(a, b) ((vec3f){ a.x / (b), a.y / (b), a.z / (b) })
+#define vec3f_dot(a, b) ((f64f)(a.x * b.x + a.y * b.y + a.z * b.z))
+#define vec3f_eq(a, b) (a.x == b.x && a.y == b.y && a.z == c.z)
+#define vec3f_cross(a, b) \
+ ((vec3f){ a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x })
+#define vec3f_sum(a) ((f64)(a.x + a.y + a.z))
+
#endif