summaryrefslogtreecommitdiffhomepage
path: root/src/rodeo_math.c
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2023-06-16 01:15:57 -0400
committerrealtradam <[email protected]>2023-06-16 01:15:57 -0400
commit94625b3133193acd22b68595fe922b7228528b11 (patch)
treef7e358545f5043df20695d0cf51dcf8caa10cb12 /src/rodeo_math.c
parentacc9db32d765728b63162d6fc74a278d0da10b83 (diff)
downloadRodeoKit-94625b3133193acd22b68595fe922b7228528b11.tar.gz
RodeoKit-94625b3133193acd22b68595fe922b7228528b11.zip
fix matrix wrapper as well as a lot of refactoring cleanupmatrixtemp
Diffstat (limited to 'src/rodeo_math.c')
-rw-r--r--src/rodeo_math.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/rodeo_math.c b/src/rodeo_math.c
index 06b6240..df6ea0f 100644
--- a/src/rodeo_math.c
+++ b/src/rodeo_math.c
@@ -38,26 +38,6 @@ rodeo_color_RGBA8_to_RGBAFloat(const rodeo_color_RGBA8_t color)
};
}
-void
-rodeo_random_seed_set(uint64_t seed)
-{
- irodeo_random_seed_set(stc64_new(seed));
-}
-
-double
-rodeo_random_double_get(void)
-{
- stc64_t *seed = irodeo_random_seed_get();
- return stc64_randf(seed);
-}
-
-uint64_t
-rodeo_random_uint64_get(void)
-{
- stc64_t *seed = irodeo_random_seed_get();
- return stc64_rand(seed);
-}
-
// need to test this, might be wrong
/*
rodeo_vector2_t