Start work on model

This commit is contained in:
Kelvin Ly 2024-03-14 21:57:44 -04:00
parent 82bbd26628
commit 8b5bb5a2b0
1 changed files with 25 additions and 0 deletions

25
v5/pnp_model.py Normal file
View File

@ -0,0 +1,25 @@
import cadquery as cq
centers = [
(-5, 0),
(10, 5),
(10, -5)
]
plunger = (
cq.Workplane("XZ")
.polyline([
(0, 0),
(10, 0),
(9.2, 10),
(0, 10)
])
.close()
.revolve()
.faces(">Z")
.workplane()
.pushPoints(centers)
.hole(3)
)
show_object(plunger)