From 85a3c8de47b136eaa23fabac9e391815b879aece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sun, 8 Mar 2026 21:51:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[rd]=20=EB=AA=A8=ED=84=B0=20=EB=B0=A9?= =?UTF-8?q?=ED=96=A5=20=EC=88=98=EC=A0=95=20=E2=80=94=20=EB=B8=8C=EB=9D=BC?= =?UTF-8?q?=EC=BC=93=20=EC=95=88=EC=AA=BD(=EC=83=A4=ED=94=84=ED=8A=B8=20?= =?UTF-8?q?=EB=B0=A9=ED=96=A5)=EC=9C=BC=EB=A1=9C=20=EB=B0=B0=EC=B9=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 모터를 브라켓 바깥(벽쪽)에서 안쪽(복주머니 옆)으로 이동 - 돌출축이 복주머니 방향으로 향하도록 수정 - 마감판은 바깥(샤프트 반대편)에 위치 --- .../views/rd/fire-shutter-drawing/index.blade.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/views/rd/fire-shutter-drawing/index.blade.php b/resources/views/rd/fire-shutter-drawing/index.blade.php index ea1e6637..a730a783 100644 --- a/resources/views/rd/fire-shutter-drawing/index.blade.php +++ b/resources/views/rd/fire-shutter-drawing/index.blade.php @@ -1123,27 +1123,27 @@ function fs3dBuild() { const motorBodyGeo = new THREE.CylinderGeometry(motorR, motorR, motorLen, 24); motorBodyGeo.rotateZ(Math.PI / 2); const motorBody = new THREE.Mesh(motorBodyGeo, motorMat); - // 복주머니 바깥쪽에 모터 배치 (브라켓 바깥) - const motorCenterX = motorDir * (W1 / 2 + bkW + motorLen / 2); + // 브라켓 안쪽(샤프트 방향)에 모터 배치 — 복주머니 옆 + const motorCenterX = motorDir * (W1 / 2 - bkW - couplingLen - motorLen / 2); motorBody.position.set(motorCenterX, 0, 0); meshes.motor.add(motorBody); - // Motor end cap (뒷면 마감판) + // Motor end cap (바깥쪽 마감판 — 샤프트 반대편) const endCapGeo = new THREE.CylinderGeometry(motorR + 5, motorR + 5, 8, 24); endCapGeo.rotateZ(Math.PI / 2); const endCapMat = new THREE.MeshStandardMaterial({ color: 0x1e40af, metalness: 0.5, roughness: 0.3 }); const endCap = new THREE.Mesh(endCapGeo, endCapMat); - endCap.position.set(motorCenterX + motorDir * (motorLen / 2 + 4), 0, 0); + endCap.position.set(motorCenterX - motorDir * (motorLen / 2 + 4), 0, 0); meshes.motor.add(endCap); - // Motor output shaft (모터 돌출축 — 모터에서 안쪽으로 돌출) - const outShaftR = b.shaftDia * 0.25; // 돌출축: 샤프트보다 작은 축 + // Motor output shaft (모터 돌출축 — 모터에서 복주머니 방향으로 돌출) + const outShaftR = b.shaftDia * 0.25; const outShaftLen = 40; const outShaftGeo = new THREE.CylinderGeometry(outShaftR, outShaftR, outShaftLen, 16); outShaftGeo.rotateZ(Math.PI / 2); const outShaftMat = new THREE.MeshStandardMaterial({ color: 0x94a3b8, metalness: 0.8, roughness: 0.2 }); const outShaft = new THREE.Mesh(outShaftGeo, outShaftMat); - outShaft.position.set(motorCenterX - motorDir * (motorLen / 2 + outShaftLen / 2), 0, 0); + outShaft.position.set(motorCenterX + motorDir * (motorLen / 2 + outShaftLen / 2), 0, 0); meshes.motor.add(outShaft); // Motor mounting legs (3개)