12 lines
405 B
Python
12 lines
405 B
Python
# This example is meant to be used from within the CadQuery module of FreeCAD.
|
|
import cadquery
|
|
from Helpers import show
|
|
|
|
# Create a block with holes in each corner of a rectangle on that workplane
|
|
result = cadquery.Workplane("front").box(2, 2, 0.5)\
|
|
.faces(">Z").workplane() \
|
|
.rect(1.5, 1.5, forConstruction=True).vertices().hole(0.125)
|
|
|
|
# Render the solid
|
|
show(result)
|