Skip to content

Commit

Permalink
Matrix2x2.Identity now actually returns the 2x2 identity matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
RossNordby committed Feb 9, 2018
1 parent ac9beb4 commit 2ebced8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BEPUutilities/Matrix2x2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Matrix2x2(float m11, float m12, float m21, float m22)
/// </summary>
public static Matrix2x2 Identity
{
get { return new Matrix2x2(1, 0, 1, 0); }
get { return new Matrix2x2(1, 0, 0, 1); }
}

/// <summary>
Expand Down

0 comments on commit 2ebced8

Please sign in to comment.