Skip to content

Commit

Permalink
Correct format of cboreHole() example code
Browse files Browse the repository at this point in the history
  • Loading branch information
sethfischer committed Apr 25, 2022
1 parent 12acb29 commit 6e3a567
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cadquery/cq.py
Original file line number Diff line number Diff line change
Expand Up @@ -2821,9 +2821,9 @@ def cboreHole(
One hole is created for each item on the stack. A very common use case is to use a
construction rectangle to define the centers of a set of holes, like so::
s = Workplane(Plane.XY()).box(2,4,0.5).faces(">Z").workplane()\
.rect(1.5,3.5,forConstruction=True)\
.vertices().cboreHole(0.125, 0.25,0.125,depth=None)
s = Workplane(Plane.XY()).box(2,4,0.5).faces(">Z").workplane()
.rect(1.5,3.5,forConstruction=True)
.vertices().cboreHole(0.125, 0.25,0.125,depth=None)
This sample creates a plate with a set of holes at the corners.
Expand Down

0 comments on commit 6e3a567

Please sign in to comment.