Fixed Matrix4.CreateOrthographicOffCenter (M44 should be 1).

This commit is contained in:
the_fiddler 2009-06-08 22:49:26 +00:00
parent 43e0b67b2e
commit 29262a075d

View file

@ -382,6 +382,7 @@ namespace OpenTK.Math
result.M41 = -(right + left) * invRL; result.M41 = -(right + left) * invRL;
result.M42 = -(top + bottom) * invTB; result.M42 = -(top + bottom) * invTB;
result.M43 = -(zFar + zNear) * invFN; result.M43 = -(zFar + zNear) * invFN;
result.M44 = 1;
} }
/// <summary> /// <summary>