Fixed Matrix4.CreateOrthographicOffCenter (M44 should be 1).

This commit is contained in:
the_fiddler 2009-06-08 22:46:18 +00:00
parent da7c1c3a4d
commit 70f735d2a6

View file

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