cadquery-freecad-module/CadQuery/Examples/Ex011_Mirroring_Symmetric_Geometry.py

16 lines
447 B
Python

#This example is meant to be used from within the CadQuery module of FreeCAD.
import cadquery
import Part
#1.0 is the distance, not coordinate
r = cadquery.Workplane("front").hLine(1.0)
#hLineTo allows using xCoordinate not distance
r = r.vLine(0.5).hLine(-0.25).vLine(-0.25).hLineTo(0.0)
#Mirror the geometry and extrude
result = r.mirrorY().extrude(0.25)
#Boiler plate code to render our solid in FreeCAD's GUI
Part.show(result.toFreecad())