chiark / gitweb /
topeak-seatstay-lock: wip fix rim tube: make new Demo
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 31 May 2014 22:24:16 +0000 (23:24 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 31 May 2014 22:24:16 +0000 (23:24 +0100)
topeak-seatstay-lock.scad

index d00f0d45fda90b5fb6bf2272eebb3b33c469195e..73382e7b6572c3ca57040e44c61d4e8150dd18fd 100644 (file)
@@ -99,8 +99,8 @@ module All(){
   }
 }
 
-module Piece(pc){
-  translate([0,-pc*4,0])
+module Piece(pc,interval){
+  translate([0,-pc*interval,0])
     intersection(){
     mirror([0,pc,0])
       translate([-200,clatter_gap/2,-200]) cube([400,400,400]);
@@ -111,10 +111,16 @@ module Piece(pc){
 module PiecesPrint(){
   rotate([0,180,0])
     for (pc=[0,1]){
-      Piece(pc);
+      Piece(pc,4);
     }
 }
 
+module Demo(){
+  for (pc=[0,1])
+    Piece(pc,0);
+}
+
+//Holes();
 //Demo();
 //All();
 //Pin();