chiark / gitweb /
quacks-ingredients: drop some debug
[reprap-play.git] / quacks-ingredients.scad
index 7c873e2584686d8f9158a53cc23b7db355c9ff83..54269c9257e3183b2e90ee3a981f6acce366e389 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C -*-
 
-token_dia = 18;
-spot_dia = 4;
+token_dia = 21;
+spot_dia = 4.5;
 spot_gap = spot_dia / 3.0;
 
 thick = 1.5;
@@ -36,12 +36,9 @@ module Spots_Extrude_Upper(){
 
 module SpotAt(condition, xy) {
   if (condition == !$spots_absent) {
-    echo(condition, $spots_absent, "Y");
     translate(xy * (spot_gap + spot_dia) * sqrt(0.5))
       circle(r= spot_dia/2 +
             ($spots_plusgap ? multicolour_gap : 0));
-  } else {
-    echo(condition, $spots_absent, "N");
   }
 }