From: Ian Jackson Date: Sat, 31 May 2014 22:24:16 +0000 (+0100) Subject: topeak-seatstay-lock: wip fix rim tube: make new Demo X-Git-Tag: filamentspool-v2-release~353 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=890e50ffaf90722974ff192d311a030617d2f8c9;p=reprap-play.git topeak-seatstay-lock: wip fix rim tube: make new Demo --- diff --git a/topeak-seatstay-lock.scad b/topeak-seatstay-lock.scad index d00f0d4..73382e7 100644 --- a/topeak-seatstay-lock.scad +++ b/topeak-seatstay-lock.scad @@ -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();