chiark / gitweb /
ksafe-base: thumb slots
[reprap-play.git] / floating-phases.scad
index 92e6b4ffc254de4e65d09a0992dcdadfea4af3c6..e93408b8c7bcd32904c13ca269319a842636cab1 100644 (file)
@@ -12,9 +12,9 @@
 //        "yellow",
 //        ];
 //
-// Pause height                2.0
+// Pause height                z_pause value from caller
 // head park X         15
-// head park Y         260
+// head park Y         0
 // head move Z         1
 // min head park Z     1
 // retraction          1
@@ -77,8 +77,8 @@ module FloatingPhaseFraming(phase, zmin) {
 
   tower_pos =
     -0.5 * frame_inner
-    + noz_gap * [1,0] * (phases-1 - phase)
-    + -[1,1] * tower_w;
+    + noz_gap * [1,0] * (phases - phase)
+    + -[1,0] * tower_w + 0.5 * [0,-1] * frame_w;
 
   // frame for alignment
   linear_extrude(height= th_l0)
@@ -99,3 +99,5 @@ module FloatingPhaseFraming(phase, zmin) {
       translate(tower_pos)
       square([1,1] * tower_w);
 }
+
+echo(str("SET PAUSE AT Z HEIGHT TO ",z_pause));