19 lines
761 B
Python
19 lines
761 B
Python
#This example is meant to be used from within the CadQuery module of FreeCAD.
|
|
import cadquery
|
|
import Part
|
|
|
|
#The dimensions of the model. These can be modified rather than changing the box's code directly.
|
|
circle_radius = 3.0
|
|
thickness = 0.25
|
|
|
|
#Make the plate with two cutouts in it
|
|
result = cadquery.Workplane("front").circle(circle_radius) # Current point is the center of the circle, at (0,0)
|
|
result = result.center(1.5,0.0).rect(0.5,0.5) # New work center is (1.5,0.0)
|
|
|
|
result = result.center(-1.5,1.5).circle(0.25) # New work center is ( 0.0,1.5).
|
|
#The new center is specified relative to the previous center, not global coordinates!
|
|
|
|
result = result.extrude(thickness)
|
|
|
|
#Boiler plate code to render our solid in FreeCAD's GUI
|
|
Part.show(result.toFreecad()) |