public static void NormaliseForward(this Matrix4 m) { var v = m.Forward(); v.Normalize(); m.M31 = v.X; m.M32 = v.Y; m.M33 = v.Z; }