1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

glm: fix typo (#8748)

This commit is contained in:
Quix 2021-02-15 10:53:07 -05:00 committed by GitHub
parent 49505d4090
commit 35f45b8e5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -242,7 +242,7 @@ pub fn scale(m Mat4, v Vec3) Mat4 {
return mat4(out)
}
// multiplicates two matrices
// multiplies two matrices
pub fn mult(a Mat4, b Mat4) Mat4 {
mut out := f32_calloc(16)
for i in 0 .. 4 {