Skip to content

Commit 34ec55c

Browse files
author
Dominic Beger
committed
Remove ToDo from list
1 parent a5205ce commit 34ec55c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

SharpMath/Geometry/Matrix4x4.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,7 @@ public static Matrix4x4 World(Vector3 position, Vector3 forward, Vector3 up)
297297
{
298298
return FromMatrix(Multiply(firstMatrix, secondMatrix));
299299
}
300-
301-
// TODO: Check if division is correct
300+
302301
public static Vector3 operator *(Matrix4x4 matrix, Vector3 vector)
303302
{
304303
var resultMatrix = Multiply(matrix, new Vector4(vector.X, vector.Y, vector.Z, 1).AsVerticalMatrix());

0 commit comments

Comments
 (0)