mirror of
https://github.com/DJSundog/NopSCADlib.git
synced 2024-11-23 07:13:51 -05:00
Merge branch 'coreXY_belts' of https://github.com/martinbudden/NopSCADlib into martinbudden-coreXY_belts
This commit is contained in:
commit
3e15be852f
@ -97,7 +97,6 @@ module coreXY_half(type, size, pos, separation_y = 0, x_gap = 0, plain_idler_off
|
|||||||
|
|
||||||
// plain idler for offset stepper motor drive pulley
|
// plain idler for offset stepper motor drive pulley
|
||||||
p3p_type = p4_type;
|
p3p_type = p4_type;
|
||||||
//p3p = [ p4.x, size.y / 2 - pulley_od(p3p_type) / 2 - pulley_od(p3d_type) / 2 + drive_pulley_offset.y ];
|
|
||||||
p3p = [ drive_pulley_offset.x > 0 ? p4.x : -p0.x - pulley_od(p0_type),
|
p3p = [ drive_pulley_offset.x > 0 ? p4.x : -p0.x - pulley_od(p0_type),
|
||||||
size.y / 2 - pulley_od(p3p_type) / 2 - pulley_od(p3d_type) / 2 + drive_pulley_offset.y
|
size.y / 2 - pulley_od(p3p_type) / 2 - pulley_od(p3d_type) / 2 + drive_pulley_offset.y
|
||||||
];
|
];
|
||||||
@ -109,12 +108,11 @@ module coreXY_half(type, size, pos, separation_y = 0, x_gap = 0, plain_idler_off
|
|||||||
p6 = [ pos.x - size.x / 2, -size.y / 2 + pos.y - separation_y / 2 ];
|
p6 = [ pos.x - size.x / 2, -size.y / 2 + pos.y - separation_y / 2 ];
|
||||||
|
|
||||||
module show_pulleys(show_pulleys) {// Allows the pulley colour to be set for debugging
|
module show_pulleys(show_pulleys) {// Allows the pulley colour to be set for debugging
|
||||||
not_on_bom()
|
if (is_list(show_pulleys))
|
||||||
if (is_list(show_pulleys))
|
color(show_pulleys)
|
||||||
color(show_pulleys)
|
|
||||||
children();
|
|
||||||
else if (show_pulleys)
|
|
||||||
children();
|
children();
|
||||||
|
else if (show_pulleys)
|
||||||
|
children();
|
||||||
}
|
}
|
||||||
|
|
||||||
show_pulleys(show_pulleys) {
|
show_pulleys(show_pulleys) {
|
||||||
|
Loading…
Reference in New Issue
Block a user