changing from mat4 to mat3

This commit is contained in:
duarm
2023-12-06 16:33:44 -03:00
parent de80b8325f
commit c1d78d835b
5 changed files with 6 additions and 8 deletions

View File

@@ -16,7 +16,7 @@ glmc_aabb2d_copy(vec2 aabb[2], vec2 dest[2]) {
CGLM_EXPORT
void
glmc_aabb2d_transform(vec2 aabb[2], mat4 m, vec2 dest[2]) {
glmc_aabb2d_transform(vec2 aabb[2], mat3 m, vec2 dest[2]) {
glm_aabb2d_transform(aabb, m, dest);
}