glm: fix typo (#8748)
parent
49505d4090
commit
35f45b8e5e
|
@ -242,7 +242,7 @@ pub fn scale(m Mat4, v Vec3) Mat4 {
|
||||||
return mat4(out)
|
return mat4(out)
|
||||||
}
|
}
|
||||||
|
|
||||||
// multiplicates two matrices
|
// multiplies two matrices
|
||||||
pub fn mult(a Mat4, b Mat4) Mat4 {
|
pub fn mult(a Mat4, b Mat4) Mat4 {
|
||||||
mut out := f32_calloc(16)
|
mut out := f32_calloc(16)
|
||||||
for i in 0 .. 4 {
|
for i in 0 .. 4 {
|
||||||
|
|
Loading…
Reference in New Issue