From 1adaf2f0a000fe3a3f1313cbde21880e9b8732a9 Mon Sep 17 00:00:00 2001 From: nicomacbookpro <805879871@qq.com> Date: Wed, 20 Aug 2025 16:01:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/three.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/three.js b/src/utils/three.js index aea3c55..397fbfb 100644 --- a/src/utils/three.js +++ b/src/utils/three.js @@ -547,7 +547,7 @@ export function drawAxes(element, options = {}, ballCallBack) { const box = new THREE.BoxGeometry(1, 1, 1); const material = new THREE.MeshBasicMaterial({ color: "red" }); const mesh = new THREE.Mesh(box, material); - for (let i = 0; i <= 5; i++) { + for (let i = 1; i <= 5; i++) { const clone = mesh.clone(true); clone.position.set(sizeX / 5 * i, 0, 0); const clone2 = clone.clone(true);