Cadquery
Workplanes
Workplanes are defined within cq.py. An explanation of the concept is given here.
Workplanes have a center and a coordenate system.
In Nim we could do with:
type
Workplane = object
cs:Ax2 # Coordinate system
In cadquery, the Workplane contains:
objects: List[CQObject]
ctx: CQContext
parent: Optional["Workplane"]
plane: Plane
_tag: Optional[str]
In the workplane, we work in 2d. CadQuery support this 2d operations.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified December 12, 2021: CadQuery inspiration (449b001)