chiark / gitweb /
topeak-seatstay-lock: wip fix rim tube: introduce cut_rotation
[reprap-play.git] / topeak-seatstay-lock.scad
index 73382e7b6572c3ca57040e44c61d4e8150dd18fd..8d5323820583e37799b50534d79d7edfa033b571 100644 (file)
@@ -24,6 +24,7 @@ clatter_gap = 0.5;
 
 // fudgeish
 
+cut_rotation = 2;
 holes_rotation = 9;
 pin_offset = 7;
 
@@ -87,11 +88,6 @@ module Pin(){
   }
 }
 
-module Demo(){
-  %Body();
-  Pin();
-}
-
 module All(){
   difference(){
     Body();
@@ -102,7 +98,7 @@ module All(){
 module Piece(pc,interval){
   translate([0,-pc*interval,0])
     intersection(){
-    mirror([0,pc,0])
+      rotate([0,0,pc*180-cut_rotation])
       translate([-200,clatter_gap/2,-200]) cube([400,400,400]);
     All();
   }