public static void NormaliseRight(this Matrix4 m) { var v = m.Right(); v.Normalize(); m.M11 = v.X; m.M12 = v.Y; m.M13 = v.Z; }