From efe87e8cacbead2828558f8a5a74187918102697 Mon Sep 17 00:00:00 2001 From: suixy <2277317060@qq.com> Date: Sat, 11 Oct 2025 16:03:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/index.vue b/src/views/index.vue index 164f2fd..af73d55 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -903,7 +903,7 @@ function getLocalPositionRelativeToP4(point, rectPoints, rectInfo) { const y_local = dx * Math.sin(rad) + dy * Math.cos(rad); // 点自身相对旋转角(相对于矩形底边方向) - const rotate_local = ((point.rotate ?? 0) - rectInfo.angle + 360) % 360; + const rotate_local = ((point.rotate ?? 0) + rectInfo.angle + 360) % 360; return { x: Number(x_local.toFixed(2)),