zworld-demo/plugin/math/mat4/operations.go

12 lines
146 B
Go
Raw Normal View History

2023-12-22 22:04:27 +08:00
package mat4
// Ident returns a new 4x4 identity matrix
func Ident() T {
return T{
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1,
}
}