diff options
| author | realtradam <[email protected]> | 2023-06-15 18:27:12 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-15 18:27:12 -0400 |
| commit | 62b6ae5f18cb10dc9103f4f40e4b4981640f409f (patch) | |
| tree | 2f9f6c01756e628ff08d1ce187da61f2acbbf0f7 | |
| parent | a23e4daeafab1e0bc352325d83971d1d83ce473b (diff) | |
| download | RodeoKit-62b6ae5f18cb10dc9103f4f40e4b4981640f409f.tar.gz RodeoKit-62b6ae5f18cb10dc9103f4f40e4b4981640f409f.zip | |
fixed one math func
| -rw-r--r-- | src/math/rodeo_mat4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/rodeo_mat4.c b/src/math/rodeo_mat4.c index a842d78..958e123 100644 --- a/src/math/rodeo_mat4.c +++ b/src/math/rodeo_mat4.c @@ -67,7 +67,7 @@ rodeo_math_mat4_t rodeo_math_mat4_translate(rodeo_math_mat4_t m, rodeo_math_vec3_t v) { return irodeo_math_cglmMat4_to_rodeoMat4( - glms_translated( + glms_translate( irodeo_math_rodeoMat4_to_cglmMat4(m), irodeo_math_rodeoVec3_to_cglmVec3(v) ) |
