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.


Last modified December 12, 2021: CadQuery inspiration (449b001)