@@ -55,7 +55,7 @@ public static class Matrix3x2Extensions
5555 /// <param name="degreesX">The X angle, in degrees.</param>
5656 /// <param name="degreesY">The Y angle, in degrees.</param>
5757 /// <returns>A skew matrix.</returns>
58- public static Matrix3x2 CreateSkewDegrees ( float degreesX , float degreesY ) => Matrix3x2 . CreateSkew ( MathFExtensions . DegreeToRadian ( degreesX ) , MathFExtensions . DegreeToRadian ( degreesY ) ) ;
58+ public static Matrix3x2 CreateSkewDegrees ( float degreesX , float degreesY ) => Matrix3x2 . CreateSkew ( GeometryUtilities . DegreeToRadian ( degreesX ) , GeometryUtilities . DegreeToRadian ( degreesY ) ) ;
5959
6060 /// <summary>
6161 /// Creates a skew matrix from the given angles in radians and a center point.
@@ -73,14 +73,14 @@ public static class Matrix3x2Extensions
7373 /// <param name="degreesY">The Y angle, in degrees.</param>
7474 /// <param name="centerPoint">The center point.</param>
7575 /// <returns>A skew matrix.</returns>
76- public static Matrix3x2 CreateSkewDegrees ( float degreesX , float degreesY , PointF centerPoint ) => Matrix3x2 . CreateSkew ( MathFExtensions . DegreeToRadian ( degreesX ) , MathFExtensions . DegreeToRadian ( degreesY ) , centerPoint ) ;
76+ public static Matrix3x2 CreateSkewDegrees ( float degreesX , float degreesY , PointF centerPoint ) => Matrix3x2 . CreateSkew ( GeometryUtilities . DegreeToRadian ( degreesX ) , GeometryUtilities . DegreeToRadian ( degreesY ) , centerPoint ) ;
7777
7878 /// <summary>
7979 /// Creates a rotation matrix using the given rotation in degrees.
8080 /// </summary>
8181 /// <param name="degrees">The amount of rotation, in degrees.</param>
8282 /// <returns>A rotation matrix.</returns>
83- public static Matrix3x2 CreateRotationDegrees ( float degrees ) => Matrix3x2 . CreateRotation ( MathFExtensions . DegreeToRadian ( degrees ) ) ;
83+ public static Matrix3x2 CreateRotationDegrees ( float degrees ) => Matrix3x2 . CreateRotation ( GeometryUtilities . DegreeToRadian ( degrees ) ) ;
8484
8585 /// <summary>
8686 /// Creates a rotation matrix using the given rotation in radians and a center point.
@@ -96,6 +96,6 @@ public static class Matrix3x2Extensions
9696 /// <param name="degrees">The amount of rotation, in degrees.</param>
9797 /// <param name="centerPoint">The center point.</param>
9898 /// <returns>A rotation matrix.</returns>
99- public static Matrix3x2 CreateRotationDegrees ( float degrees , PointF centerPoint ) => Matrix3x2 . CreateRotation ( MathFExtensions . DegreeToRadian ( degrees ) , centerPoint ) ;
99+ public static Matrix3x2 CreateRotationDegrees ( float degrees , PointF centerPoint ) => Matrix3x2 . CreateRotation ( GeometryUtilities . DegreeToRadian ( degrees ) , centerPoint ) ;
100100 }
101101}
0 commit comments