From: Clinton Ebadi Date: Tue, 22 Oct 2019 03:42:58 +0000 (-0400) Subject: pacman-ghost: make tea light parameters global X-Git-Url: http://git.hcoop.net/clinton/3d-models.git/commitdiff_plain/623e1176ee541e77d997e01189fa8cff096cd74f pacman-ghost: make tea light parameters global May as well allow changes in the customizer --- diff --git a/pacman-ghost/pacman-ghost.scad b/pacman-ghost/pacman-ghost.scad index 08035d2..35c8d03 100644 --- a/pacman-ghost/pacman-ghost.scad +++ b/pacman-ghost/pacman-ghost.scad @@ -24,11 +24,16 @@ tea_light = true; // Render Ghost ghost = true; // Render Pac Guy -pacguy = true; +pacguy = false; // Detail $fa=4; // [20:Low Res, 10:Normal Res, 4:Hi Res] +// [Tea Light] +base_diameter = 30; +base_height = 16.2; +bulb_diameter = 9; + /* [Hidden] */ $fs=0.1; @@ -71,14 +76,10 @@ module led_hole (led_d = led_hole, led_h = 0) { } module tea_light_base () { - base_diameter = 30; - base_height = 16.2; - bulb_ghost_diameter = 9; - difference () { union () { cylinder (d = base_diameter + 1, h = base_height + 1); - led_hole (led_d = bulb_ghost_diameter, led_h = base_height+8); + led_hole (led_d = bulb_diameter, led_h = base_height+8); } }