diff --git a/bottle-clip.scad b/bottle-clip.scad index 2e9ad80..d96d851 100644 --- a/bottle-clip.scad +++ b/bottle-clip.scad @@ -36,7 +36,7 @@ e=100; // should be big enough, used for the outer boundary of the text/logo * in mm. * font: the path to a font for Write.scad. */ -module name_tag(ru=13, rl=17.5, ht=26, width=2.5, +module bottle_clip_name_tag(ru=13, rl=17.5, ht=26, width=2.5, logo="thing-logos/stratum0-lowres.dxf", font="write/orbitron.dxf") { difference() { rotate([0,0,-45]) union() { @@ -70,13 +70,13 @@ module name_tag(ru=13, rl=17.5, ht=26, width=2.5, } // template for 4 default bottle name tags -translate([ 22, 22,0]) rotate(180) name_tag(name="YourName"); -//translate([-22, 22,0]) rotate(270) name_tag(name="J. Random Hacker"); -//translate([-22,-22,0]) rotate( 0) name_tag(name="Acid Burn"); -//translate([ 22,-22,0]) rotate( 90) name_tag(name="Zero Cool"); +translate([ 22, 22,0]) rotate(180) bottle_clip_name_tag(name="YourName"); +//translate([-22, 22,0]) rotate(270) bottle_clip_name_tag(name="J. Random Hacker"); +//translate([-22,-22,0]) rotate( 0) bottle_clip_name_tag(name="Acid Burn"); +//translate([ 22,-22,0]) rotate( 90) bottle_clip_name_tag(name="Zero Cool"); // example for 0.33l bottles, different logo and different font -//translate([ 22,-22,0]) rotate( 90) name_tag(name="YourName", ru=13, rl=15, +//translate([ 22,-22,0]) rotate( 90) bottle_clip_name_tag(name="YourName", ru=13, rl=15, // logo="yourlogo.dxf", font="Letters.dxf"); // vim: set noet ts=2 sw=2 :