-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 | |||
@@ -69,13 +69,14 @@ module the_extruder( | |||
69 | min_xy_shell = 2*extrusion_width, | 69 | min_xy_shell = 2*extrusion_width, |
70 | 70 | ||
71 | what="lever", // lever|body|knob|springpad|* | 71 | what="lever", // lever|body|knob|springpad|* |
72 | left=false, | 72 | left=false, |
73 | vitamins = true, | 73 | vitamins = true, |
74 | bridges = true, | 74 | bridges = true, |
75 | debug = false | 75 | debug = false, |
76 | label = "another" | ||
76 | ) { | 77 | ) { |
77 | fnd = 2*PI; fnr = 2*fnd; | 78 | fnd = 2*PI; fnr = 2*fnd; |
78 | 79 | ||
79 | idler_filament_offset = filament_path_d/2; // -filament_offset; | 80 | idler_filament_offset = filament_path_d/2; // -filament_offset; |
80 | lever_shell = mount_screwhead_h+0.5; | 81 | lever_shell = mount_screwhead_h+0.5; |
81 | lever_thickness=max(spring_d+spring_d_clearance+layer_height*8,idler_h+idler_v_tolerance+2*lever_shell); | 82 | lever_thickness=max(spring_d+spring_d_clearance+layer_height*8,idler_h+idler_v_tolerance+2*lever_shell); |
@@ -365,12 +366,22 @@ module the_extruder( | |||
365 | }//translate | 366 | }//translate |
366 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) | 367 | translate([0,0,st_thickshell+st_nut_h+st_nut_h_tolerance+st_thinshell+hf-epsilon]) |
367 | cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd); | 368 | cylinder(d=bigd,h=fsw+1,$fn=fnd*bigd); |
368 | }//mirror | 369 | }//mirror |
369 | }//translate | 370 | }//translate |
370 | 371 | ||
372 | // label | ||
373 | label_thickness = 2*layer_height; | ||
374 | label_len = len(label); | ||
375 | 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]; | ||
376 | translate([0,0,body_h-label_thickness]) | ||
377 | linear_extrude(height=label_thickness+epsilon,convexity=64) | ||
378 | 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]) | ||
379 | mirror([left?0:1,0]) | ||
380 | text(text=label,size=labelspace.x/label_len,halign="center",valign="center",font="Arial Black"); | ||
381 | |||
371 | }//difference | 382 | }//difference |
372 | 383 | ||
373 | }//body module | 384 | }//body module |
374 | 385 | ||
375 | module springpad() { | 386 | module springpad() { |
376 | smalld=st_screw_d+st_screw_d_tolerance+min_xy_shell; | 387 | smalld=st_screw_d+st_screw_d_tolerance+min_xy_shell; |