mirror of
https://github.com/gumyr/build123d.git
synced 2026-01-04 08:12:40 -08:00
add fillet to bottle to make it look similar to original
This commit is contained in:
parent
00164c4d9d
commit
d5dfb8b92e
2 changed files with 2 additions and 1 deletions
|
|
@ -665,6 +665,7 @@ with BuildPart() as ex29:
|
||||||
mirror(ex29_ow_ln.line)
|
mirror(ex29_ow_ln.line)
|
||||||
make_face()
|
make_face()
|
||||||
extrude(amount=h + b)
|
extrude(amount=h + b)
|
||||||
|
fillet(ex29.edges(), radius=w / 6)
|
||||||
with BuildSketch(ex29.faces().sort_by(Axis.Z)[-1]):
|
with BuildSketch(ex29.faces().sort_by(Axis.Z)[-1]):
|
||||||
Circle(t)
|
Circle(t)
|
||||||
extrude(amount=n)
|
extrude(amount=n)
|
||||||
|
|
|
||||||
|
|
@ -639,7 +639,7 @@ ln29 = l1 + l2 + l3
|
||||||
ln29 += mirror(ln29)
|
ln29 += mirror(ln29)
|
||||||
sk29 = make_face(ln29)
|
sk29 = make_face(ln29)
|
||||||
ex29 = extrude(sk29, -(h + b))
|
ex29 = extrude(sk29, -(h + b))
|
||||||
# ex29 = fillet(*ex29.edges(), radius=w / 8)
|
ex29 = fillet(ex29.edges(), radius=w / 6)
|
||||||
|
|
||||||
neck = Plane(ex29.faces().sort_by().last) * Circle(t)
|
neck = Plane(ex29.faces().sort_by().last) * Circle(t)
|
||||||
ex29 += extrude(neck, n)
|
ex29 += extrude(neck, n)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue