From: Ian Jackson Date: Sun, 16 Feb 2020 20:33:54 +0000 (+0000) Subject: quacks-ingredients: sort out Tests X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=ac060e6b3285be4975fb4859c6ad61d5e86227f3;p=reprap-play.git quacks-ingredients: sort out Tests Signed-off-by: Ian Jackson --- diff --git a/quacks-ingredients.scad b/quacks-ingredients.scad index 5afdd19..50b38e0 100644 --- a/quacks-ingredients.scad +++ b/quacks-ingredients.scad @@ -86,14 +86,13 @@ module Token_L5(){ Token_Spots(); } -module Frame(phase) { +module Frame(phase, base_sz) { zs = [ initial_layer_thick, initial_layer_thick, thick, thick, thick ]; - base_sz = token_dia * [ 6, 1.5 ]; sz = base_sz + phase * initial_layer_width * 2 * [1,1]; linear_extrude(height= initial_layer_thick) { difference(){ @@ -114,8 +113,9 @@ module Tests(){ } } -module Test_L() { ////toplevel - Frame($phase); Tests() Token_L(); +module Tests_L() { ////toplevel + Frame($phase, token_dia * [ 6, 1.5 ]); + Tests() Token_L(); } //Demo();