From 890e50ffaf90722974ff192d311a030617d2f8c9 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 31 May 2014 23:24:16 +0100 Subject: [PATCH] topeak-seatstay-lock: wip fix rim tube: make new Demo --- topeak-seatstay-lock.scad | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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(); -- 2.30.2