got first directive workign

This commit is contained in:
Dave Cowden
2015-12-08 22:36:19 -05:00
parent 4e2168cad6
commit 190980d4a1
5 changed files with 110 additions and 58 deletions

View File

@ -43,7 +43,8 @@ Just about the simplest possible example, a rectangular box
.. cq_plot::
result = Workplane("front").box(2.0,2.0,0.5)
result = cadquery.Workplane("front").box(2.0,2.0,0.5)
build_object(result)
.. topic:: Api References
@ -64,7 +65,7 @@ of a working plane is at the center of the face. The default hole depth is thro
.. cq_plot::
result = Workplane("front").box(2.0,2.0,0.5).faces(">Z").hole(0.5)
build_output(result)
.. topic:: Api References
@ -533,6 +534,8 @@ with just a few lines of code.
.rect(length-padding,height-padding,forConstruction=True) \
.vertices().cboreHole(2.4,4.4,2.1)
build_output(result)
Splitting an Object
---------------------