20 lines
508 B
Python
20 lines
508 B
Python
import cadquery as cq
|
|
|
|
# Set up the length, width, and thickness
|
|
(L, w, t) = (20.0, 6.0, 3.0)
|
|
s = cq.Workplane("XY")
|
|
|
|
# Draw half the profile of the bottle and extrude it
|
|
p = s.center(-L / 2.0, 0).vLine(w / 2.0) \
|
|
.threePointArc((L / 2.0, w / 2.0 + t), (L, w / 2.0)).vLine(-w / 2.0) \
|
|
.mirrorX().extrude(30.0, True)
|
|
|
|
# Make the neck
|
|
p.faces(">Z").workplane().circle(3.0).extrude(2.0, True)
|
|
|
|
# Make a shell
|
|
result = p.faces(">Z").shell(0.3)
|
|
|
|
# Displays the result of this script
|
|
show_object(result)
|