소스 검색

hardware: pull the bracket arms in by 2mm.

Michael Hope 9 달 전
부모
커밋
321b6d7a79
2개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      hardware/bracket.scad
  2. 2 3
      hardware/pipoint.scad

+ 1 - 1
hardware/bracket.scad 파일 보기

@@ -2,7 +2,7 @@
2 2
 module bracket() {
3 3
        t = 3;
4 4
        w = 30;
5
-       h = 52;
5
+       h = 50;
6 6
        d = 36;
7 7
        sd = 25;
8 8
 

+ 2 - 3
hardware/pipoint.scad 파일 보기

@@ -35,15 +35,14 @@ module camera_mount() {
35 35
     difference () {
36 36
         union () {
37 37
             bracket();
38
-            translate([-5, 2, 0])
38
+            translate([-6, 2, 0])
39 39
                 rotate(90, [1, 0, 0])
40 40
                 plate();
41 41
         }
42
-        translate([-2, -1, 3])
42
+        translate([-3, -1, 3])
43 43
             rotate(90, [1, 0, 0])
44 44
             turnigy2k();
45 45
     }
46 46
 }
47 47
 
48 48
 camera_mount();
49
-