From ac060e6b3285be4975fb4859c6ad61d5e86227f3 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 16 Feb 2020 20:33:54 +0000 Subject: [PATCH] quacks-ingredients: sort out Tests Signed-off-by: Ian Jackson --- quacks-ingredients.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); -- 2.30.2