import cadquery as cq # 1. Establishes a workplane that an object can be built on. # 1a. Uses the named plane orientation "front" to define the workplane, meaning # that the positive Z direction is "up", and the negative Z direction # is "down". # 2. Creates a 3D box that will have geometry based off it later. result = cq.Workplane("front").box(3, 2, 0.5) # 3. The lowest face in the X direction is selected with the