From 58990b41ae3f2339e5bb2616f870d79e3f8d6463 Mon Sep 17 00:00:00 2001 From: WalterMitty Date: Sat, 22 Mar 2025 17:06:23 +0800 Subject: [PATCH] fix: 'Rotate' spell error (#9288) --- packages/math/point.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/math/point.ts b/packages/math/point.ts index f6234c8ea..b6054a10a 100644 --- a/packages/math/point.ts +++ b/packages/math/point.ts @@ -97,7 +97,7 @@ export function pointsEqual( } /** - * 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( } /** - * 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