This commit is contained in:
bloeys
2021-11-05 04:44:00 +04:00
parent 1d03d4c3ea
commit d20d09f680
2 changed files with 21 additions and 0 deletions

View File

@ -20,6 +20,8 @@ func main() {
},
}
m3 := gglm.MulMat3(m1, m2)
m1.Mul(m2)
println(m1.String())
println(m3.String())
}