mirror of
https://github.com/kennetek/gridfinity-rebuilt-openscad.git
synced 2024-12-22 14:53:25 +00:00
Fix spiral vase mode
* Fixed assertion relating to walls. * Switched to profile_wall instead of profile_wall_sub. * Adjusted block_pinch offset so the stacking lip is properly printed.
This commit is contained in:
parent
36345f3efb
commit
35ee2065db
1 changed files with 11 additions and 33 deletions
|
@ -146,7 +146,7 @@ module gridfinityVase() {
|
||||||
block_x();
|
block_x();
|
||||||
block_inset();
|
block_inset();
|
||||||
if (enable_pinch)
|
if (enable_pinch)
|
||||||
block_pinch();
|
block_pinch(d_height);
|
||||||
|
|
||||||
if (bottom_layer <= 0)
|
if (bottom_layer <= 0)
|
||||||
translate([0,0,-50+layer+0.01])
|
translate([0,0,-50+layer+0.01])
|
||||||
|
@ -228,26 +228,13 @@ module block_base_blank(o = 0) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module block_pinch() {
|
module block_pinch(height_mm) {
|
||||||
sweep_rounded(gridx*l_grid-2*r_base-0.5-0.001, gridy*l_grid-2*r_base-0.5-0.001)
|
assert(is_num(height_mm));
|
||||||
translate([r_base,0,0])
|
|
||||||
mirror([1,0,0])
|
|
||||||
translate([0,-(-d_height-h_base/2+r_c1),0])
|
|
||||||
copy_mirror([0,1,0])
|
|
||||||
difference() {
|
|
||||||
offset(delta = -nozzle*sqrt(2))
|
|
||||||
translate([0,-d_height-h_base/2+r_c1,0])
|
|
||||||
union() {
|
|
||||||
profile_wall_sub();
|
|
||||||
mirror([1,0,0])
|
|
||||||
square([10,d_height+h_base]);
|
|
||||||
}
|
|
||||||
|
|
||||||
translate([0,-50,0])
|
|
||||||
square([100,100], center = true);
|
|
||||||
|
|
||||||
|
translate([0, 0, -h_base])
|
||||||
|
block_wall(gridx, gridy, l_grid) {
|
||||||
translate([d_wall2-nozzle*2-d_clear*2,0,0])
|
translate([d_wall2-nozzle*2-d_clear*2,0,0])
|
||||||
square(r_c2*2);
|
profile_wall(height_mm);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -325,7 +312,9 @@ module block_divider_edgecut() {
|
||||||
rotate([90,0,90])
|
rotate([90,0,90])
|
||||||
linear_extrude(100)
|
linear_extrude(100)
|
||||||
offset(delta = 0.1)
|
offset(delta = 0.1)
|
||||||
profile_wall_sub();
|
mirror([1,0,0])
|
||||||
|
translate([-r_base,0,0])
|
||||||
|
profile_wall($dh);
|
||||||
}
|
}
|
||||||
|
|
||||||
module transform_funnel() {
|
module transform_funnel() {
|
||||||
|
@ -361,8 +350,8 @@ module block_vase_base() {
|
||||||
block_bottom(d_bottom, gridx, gridy, l_grid);
|
block_bottom(d_bottom, gridx, gridy, l_grid);
|
||||||
color("royalblue")
|
color("royalblue")
|
||||||
block_wall(gridx, gridy, l_grid) {
|
block_wall(gridx, gridy, l_grid) {
|
||||||
if (enable_lip) profile_wall();
|
if (enable_lip) profile_wall($dh);
|
||||||
else profile_wall2();
|
else profile_wall2($dh);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -396,17 +385,6 @@ module block_vase_base() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module profile_wall_sub_sub() {
|
|
||||||
polygon([
|
|
||||||
[0,0],
|
|
||||||
[nozzle*2,0],
|
|
||||||
[nozzle*2,d_height-1.2-d_wall2+nozzle*2],
|
|
||||||
[d_wall2-d_clear,d_height-1.2],
|
|
||||||
[d_wall2-d_clear,d_height+h_base],
|
|
||||||
[0,d_height+h_base]
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
module block_inset() {
|
module block_inset() {
|
||||||
ixx = (gridx*l_grid-0.5)/2;
|
ixx = (gridx*l_grid-0.5)/2;
|
||||||
iyy = d_height/1.875;
|
iyy = d_height/1.875;
|
||||||
|
|
Loading…
Reference in a new issue