From: Ian Jackson Date: Sat, 31 May 2014 22:25:19 +0000 (+0100) Subject: topeak-seatstay-lock: wip fix rim tube: introduce cut_rotation X-Git-Tag: filamentspool-v2-release~351 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=d51e2c0f88ec1f73d15be824374b306f86b5a5a7;ds=sidebyside topeak-seatstay-lock: wip fix rim tube: introduce cut_rotation --- diff --git a/topeak-seatstay-lock.scad b/topeak-seatstay-lock.scad index 0ae6f7e..8d53238 100644 --- a/topeak-seatstay-lock.scad +++ b/topeak-seatstay-lock.scad @@ -24,6 +24,7 @@ clatter_gap = 0.5; // fudgeish +cut_rotation = 2; holes_rotation = 9; pin_offset = 7; @@ -97,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(); }