diff options
| author | realtradam <[email protected]> | 2023-06-16 01:15:57 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-16 01:15:57 -0400 |
| commit | 94625b3133193acd22b68595fe922b7228528b11 (patch) | |
| tree | f7e358545f5043df20695d0cf51dcf8caa10cb12 /src/rodeo_math.c | |
| parent | acc9db32d765728b63162d6fc74a278d0da10b83 (diff) | |
| download | RodeoKit-matrixtemp.tar.gz RodeoKit-matrixtemp.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.c | 20 |
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 |
