Fixed line continuations in examples per #221
This commit is contained in:
@ -11,10 +11,10 @@ import cadquery as cq
|
||||
# 5. Creates a workplane 3 mm above the face the circle was drawn on.
|
||||
# 6. Draws a 2D circle on the new, offset workplane.
|
||||
# 7. Creates a loft between the circle and the rectangle.
|
||||
result = cq.Workplane("front").box(4.0, 4.0, 0.25).faces(">Z") \
|
||||
.circle(1.5).workplane(offset=3.0) \
|
||||
.rect(0.75, 0.5) \
|
||||
.loft(combine=True)
|
||||
result = (cq.Workplane("front").box(4.0, 4.0, 0.25).faces(">Z")
|
||||
.circle(1.5).workplane(offset=3.0)
|
||||
.rect(0.75, 0.5)
|
||||
.loft(combine=True))
|
||||
|
||||
# Displays the result of this script
|
||||
show_object(result)
|
||||
|
Reference in New Issue
Block a user