chiark / gitweb /
quacks-ingredients: -update-levels
[reprap-play.git] / quacks-ingredients.scad
index 4205cd3184e2ef0c53e5bcdd82cc5f011545342e..5afdd19569f2e554955f41e9d0af5257006b7bba 100644 (file)
@@ -12,7 +12,6 @@ initial_layer_width = 0.750;
 final_layer_thick = 0.250;
 multicolour_post = 4;
 
-$nspots = 3;
 $spots_absent = false;
 $spots_plusgap = false;
 
@@ -87,12 +86,6 @@ module Token_L5(){
     Token_Spots();
 }
 
-module Demo(){ ////toplevel
-  color("red") { Token_L3(); }
-  color("white") { Token_L1(); Token_L5(); }
-  color("black") { Token_L2(); Token_L4(); }
-}
-
 module Frame(phase) {
   zs = [ initial_layer_thick,
         initial_layer_thick,
@@ -121,20 +114,8 @@ module Tests(){
   }
 }
 
-module Test_L1(){ ////toplevel
-  Frame(1); Tests() Token_L1();
-}
-module Test_L2(){ ////toplevel
-  Frame(2); Tests() Token_L2();
-}
-module Test_L3(){ ////toplevel
-  Frame(3); Tests() Token_L3();
-}
-module Test_L4(){ ////toplevel
-  Frame(4); Tests() Token_L4();
-}
-module Test_L5(){ ////toplevel
-  Frame(5); Tests() Token_L5();
+module Test_L() { ////toplevel
+  Frame($phase); Tests() Token_L();
 }
 
 //Demo();