@@ -24,7 +24,7 @@ public class ProjectiveTransformBuilder
2424 /// <param name="fraction">The amount to taper.</param>
2525 /// <returns>The <see cref="ProjectiveTransformBuilder"/>.</returns>
2626 public ProjectiveTransformBuilder PrependTaper ( TaperSide side , TaperCorner corner , float fraction )
27- => this . Prepend ( size => TransformUtilities . CreateTaperMatrix ( size , side , corner , fraction ) ) ;
27+ => this . Prepend ( size => TransformUtils . CreateTaperMatrix ( size , side , corner , fraction ) ) ;
2828
2929 /// <summary>
3030 /// Appends a matrix that performs a tapering projective transform.
@@ -34,7 +34,7 @@ public ProjectiveTransformBuilder PrependTaper(TaperSide side, TaperCorner corne
3434 /// <param name="fraction">The amount to taper.</param>
3535 /// <returns>The <see cref="ProjectiveTransformBuilder"/>.</returns>
3636 public ProjectiveTransformBuilder AppendTaper ( TaperSide side , TaperCorner corner , float fraction )
37- => this . Append ( size => TransformUtilities . CreateTaperMatrix ( size , side , corner , fraction ) ) ;
37+ => this . Append ( size => TransformUtils . CreateTaperMatrix ( size , side , corner , fraction ) ) ;
3838
3939 /// <summary>
4040 /// Prepends a centered rotation matrix using the given rotation in degrees.
@@ -50,7 +50,7 @@ public ProjectiveTransformBuilder PrependRotationDegrees(float degrees)
5050 /// <param name="radians">The amount of rotation, in radians.</param>
5151 /// <returns>The <see cref="ProjectiveTransformBuilder"/>.</returns>
5252 public ProjectiveTransformBuilder PrependRotationRadians ( float radians )
53- => this . Prepend ( size => new Matrix4x4 ( TransformUtilities . CreateRotationMatrixRadians ( radians , size ) ) ) ;
53+ => this . Prepend ( size => new Matrix4x4 ( TransformUtils . CreateRotationMatrixRadians ( radians , size ) ) ) ;
5454
5555 /// <summary>
5656 /// Prepends a centered rotation matrix using the given rotation in degrees at the given origin.
@@ -84,7 +84,7 @@ public ProjectiveTransformBuilder AppendRotationDegrees(float degrees)
8484 /// <param name="radians">The amount of rotation, in radians.</param>
8585 /// <returns>The <see cref="ProjectiveTransformBuilder"/>.</returns>
8686 public ProjectiveTransformBuilder AppendRotationRadians ( float radians )
87- => this . Append ( size => new Matrix4x4 ( TransformUtilities . CreateRotationMatrixRadians ( radians , size ) ) ) ;
87+ => this . Append ( size => new Matrix4x4 ( TransformUtils . CreateRotationMatrixRadians ( radians , size ) ) ) ;
8888
8989 /// <summary>
9090 /// Appends a centered rotation matrix using the given rotation in degrees at the given origin.
@@ -168,7 +168,7 @@ internal ProjectiveTransformBuilder PrependSkewDegrees(float degreesX, float deg
168168 /// <param name="radiansY">The Y angle, in radians.</param>
169169 /// <returns>The <see cref="ProjectiveTransformBuilder"/>.</returns>
170170 public ProjectiveTransformBuilder PrependSkewRadians ( float radiansX , float radiansY )
171- => this . Prepend ( size => new Matrix4x4 ( TransformUtilities . CreateSkewMatrixRadians ( radiansX , radiansY , size ) ) ) ;
171+ => this . Prepend ( size => new Matrix4x4 ( TransformUtils . CreateSkewMatrixRadians ( radiansX , radiansY , size ) ) ) ;
172172
173173 /// <summary>
174174 /// Prepends a skew matrix using the given angles in degrees at the given origin.
@@ -206,7 +206,7 @@ internal ProjectiveTransformBuilder AppendSkewDegrees(float degreesX, float degr
206206 /// <param name="radiansY">The Y angle, in radians.</param>
207207 /// <returns>The <see cref="ProjectiveTransformBuilder"/>.</returns>
208208 public ProjectiveTransformBuilder AppendSkewRadians ( float radiansX , float radiansY )
209- => this . Append ( size => new Matrix4x4 ( TransformUtilities . CreateSkewMatrixRadians ( radiansX , radiansY , size ) ) ) ;
209+ => this . Append ( size => new Matrix4x4 ( TransformUtils . CreateSkewMatrixRadians ( radiansX , radiansY , size ) ) ) ;
210210
211211 /// <summary>
212212 /// Appends a skew matrix using the given angles in degrees at the given origin.
@@ -332,7 +332,7 @@ public Matrix4x4 BuildMatrix(Rectangle sourceRectangle)
332332
333333 private static void CheckDegenerate ( Matrix4x4 matrix )
334334 {
335- if ( TransformUtilities . IsDegenerate ( matrix ) )
335+ if ( TransformUtils . IsDegenerate ( matrix ) )
336336 {
337337 throw new DegenerateTransformException ( "Matrix is degenerate. Check input values." ) ;
338338 }
0 commit comments