diff options
| author | realtradam <[email protected]> | 2023-06-16 01:18:13 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-16 01:18:13 -0400 |
| commit | a47cc44ef7191d03f8ca1b8d4e6b9dd34fba1807 (patch) | |
| tree | f7e358545f5043df20695d0cf51dcf8caa10cb12 /src/rodeo_math.c | |
| parent | 425516a9c53183179c43517f1b6501a790378a05 (diff) | |
| download | RodeoKit-a47cc44ef7191d03f8ca1b8d4e6b9dd34fba1807.tar.gz RodeoKit-a47cc44ef7191d03f8ca1b8d4e6b9dd34fba1807.zip | |
matrix math wrapper as well as various refactors for consistant and cleaner code
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 |
