zworld/plugins/math/mat4/operations.go
2024-01-14 22:56:06 +08:00

12 lines
146 B
Go

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,
}
}