Browse Source

fix: 'Rotate' spell error (#9288)

pull/9268/merge
WalterMitty 9 months ago committed by GitHub
parent
commit
58990b41ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      packages/math/point.ts

4
packages/math/point.ts

@ -97,7 +97,7 @@ export function pointsEqual<Point extends GlobalPoint | LocalPoint>( @@ -97,7 +97,7 @@ export function pointsEqual<Point extends GlobalPoint | LocalPoint>(
}
/**
* Roate a point by [angle] radians.
* Rotate a point by [angle] radians.
*
* @param point The point to rotate
* @param center The point to rotate around, the center point
@ -116,7 +116,7 @@ export function pointRotateRads<Point extends GlobalPoint | LocalPoint>( @@ -116,7 +116,7 @@ export function pointRotateRads<Point extends GlobalPoint | LocalPoint>(
}
/**
* Roate a point by [angle] degree.
* Rotate a point by [angle] degree.
*
* @param point The point to rotate
* @param center The point to rotate around, the center point

Loading…
Cancel
Save