Skip to content

Commit

Permalink
removes erroneous unit scaling factor on transform conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
clairekuang committed Apr 27, 2023
1 parent e26c883 commit 9326695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/Objects/Other/Transform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public double[] ConvertToUnits(string newUnits)
matrix.M11, matrix.M12, matrix.M13, matrix.M14 * sf,
matrix.M21, matrix.M22, matrix.M23, matrix.M24 * sf,
matrix.M31, matrix.M32, matrix.M33, matrix.M34 * sf,
matrix.M41, matrix.M42, matrix.M43, matrix.M44 * sf
matrix.M41, matrix.M42, matrix.M43, matrix.M44
};
}

Expand Down

0 comments on commit 9326695

Please sign in to comment.