-rw-r--r-- | another.scad | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/another.scad b/another.scad index bb67dea..297c1fc 100644 --- a/another.scad +++ b/another.scad @@ -74,3 +74,4 @@ module the_extruder( bridges = true, - debug = false + debug = false, + label = "another" ) { @@ -370,2 +371,12 @@ module the_extruder( + // label + label_thickness = 2*layer_height; + label_len = len(label); + labelspace = [gearbox_d/2-mount_screwhead_d/2-min_xy_shell,longwing-(mount_screwhead_d-st_thinshell-st_split_w_tolerance)/2-2*min_xy_shell-mount_d/2]; + translate([0,0,body_h-label_thickness]) + linear_extrude(height=label_thickness+epsilon,convexity=64) + translate([-mount_screwhead_d/2-min_xy_shell-labelspace.x/2,-longwing+(st_thinshell+st_split_w_tolerance)/2+min_xy_shell+labelspace.y/2]) + mirror([left?0:1,0]) + text(text=label,size=labelspace.x/label_len,halign="center",valign="center",font="Arial Black"); + }//difference |