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 a hole placed in it later. result = cq.Workplane("front").box(3, 2, 0.5) # 3. Select the lower left vertex and make a workplane. # 3a. The top-most Z face is selected using the >Z selector. # 3b. The lower-left vertex of the faces is selected with the Z").vertices("