fix: [rd] 플랜지 외경 = 샤프트 내경 - 1mm 공차
- 샤프트 관 두께 4mm 정의 - 플랜지 외경 = shaftR - 4mm(관두께) - 0.5mm(공차) - 플랜지가 샤프트 안으로 삽입되는 실제 구조 반영
This commit is contained in:
@@ -1065,7 +1065,8 @@ function fs3dBuild() {
|
||||
const stubPinVisible = 200; // 밖에서 보이는 길이 (플랜지 밖)
|
||||
const stubPinInside = stubPinTotal - stubPinVisible; // 플랜지 안쪽 (100mm)
|
||||
const shaftR = b.shaftDia / 2;
|
||||
const flangeR = shaftR; // 플랜지 외경 = 샤프트 외경 (끝에 딱 들어가는 형태)
|
||||
const shaftWallThick = 4; // 샤프트 관 두께 (4mm)
|
||||
const flangeR = shaftR - shaftWallThick - 0.5; // 플랜지 외경 = 샤프트 내경 - 1mm 공차
|
||||
const flangeThick = 10; // 플랜지 두께
|
||||
const flangeMat = new THREE.MeshStandardMaterial({ color: 0x78716c, metalness: 0.5, roughness: 0.35 });
|
||||
const stubPinMat = new THREE.MeshStandardMaterial({ color: 0x9ca3af, metalness: 0.7, roughness: 0.25 });
|
||||
|
||||
Reference in New Issue
Block a user