1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-08 00:16:29 +02:00

Resistor wire drawn even if naked=true.

This commit is contained in:
Martin Budden
2020-01-10 09:11:31 +00:00
parent 804c00bdcb
commit 61493eaa34

View File

@@ -61,34 +61,35 @@ heater_y = heater_width / 2;
fan_x_offset = rad_dia / 2 + 4; fan_x_offset = rad_dia / 2 + 4;
module e3d_resistor(type, resistor_wire_rotate = [0,0,0]) { module e3d_resistor(type, naked = false, resistor_wire_rotate = [0,0,0]) {
translate([11 - heater_x, -3 - heater_y, heater_height / 2 + nozzle_h]) { translate([11 - heater_x, -3 - heater_y, heater_height / 2 + nozzle_h]) {
color("grey") color("grey")
rotate([-90, 0, 0]) rotate([-90, 0, 0])
cylinder(r = resistor_dia / 2, h = resistor_len); cylinder(r = resistor_dia / 2, h = resistor_len);
color("red") if(!naked)
translate([0, resistor_len + 3.5/2 + 1, 0]) { color("red")
rotate(resistor_wire_rotate) { translate([0, resistor_len + 3.5/2 + 1, 0]) {
translate([-3.5/2, 0, 0]) { rotate(resistor_wire_rotate) {
cylinder(d = 3.5, h = 36); translate([-3.5/2, 0, 0]) {
cylinder(d = 3.5, h = 36);
translate([3.5, 0, 0]) translate([3.5, 0, 0])
cylinder(r = 3.5 / 2, h = 36); cylinder(r = 3.5 / 2, h = 36);
} }
} }
} }
} }
} }
module heater_block(type, resistor_wire_rotate = [0,0,0]) { module heater_block(type, naked = false, resistor_wire_rotate = [0,0,0]) {
translate_z(-hot_end_length(type)) { translate_z(-hot_end_length(type)) {
translate_z(nozzle_h) translate_z(nozzle_h)
color("lightgrey") color("lightgrey")
translate([-heater_x, -heater_y, 0]) translate([-heater_x, -heater_y, 0])
cube([heater_length, heater_width, heater_height]); cube([heater_length, heater_width, heater_height]);
e3d_resistor(type, resistor_wire_rotate); e3d_resistor(type, naked, resistor_wire_rotate);
e3d_nozzle(type); e3d_nozzle(type);
} }
} }
@@ -150,7 +151,7 @@ module e3d_hot_end(type, filament, naked = false, resistor_wire_rotate = [0,0,0]
} }
rotate(90) rotate(90)
heater_block(type, resistor_wire_rotate); heater_block(type, naked, resistor_wire_rotate);
if(!naked) if(!naked)
translate_z(inset - insulator_length) translate_z(inset - insulator_length)