From dc2f74cfd7fc940b6344c9c74f9acbc41ebc4baa Mon Sep 17 00:00:00 2001 From: hyOzd Date: Mon, 22 Jun 2015 00:03:47 +0300 Subject: [PATCH] chamfer example; there is no need to call edges(), faces() selector works fine --- cadquery/CQ.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cadquery/CQ.py b/cadquery/CQ.py index 862435f..44bd0e9 100644 --- a/cadquery/CQ.py +++ b/cadquery/CQ.py @@ -817,11 +817,11 @@ class CQ(object): This example will create a unit cube, with the top edges chamfered:: - s = Workplane("XY").box(1,1,1).faces("+Z").edges().chamfer(0.1) + s = Workplane("XY").box(1,1,1).faces("+Z").chamfer(0.1) This example will create chamfers longer on the sides:: - s = Workplane("XY").box(1,1,1).faces("+Z").edges().chamfer(0.2, 0.1) + s = Workplane("XY").box(1,1,1).faces("+Z").chamfer(0.2, 0.1) """ solid = self.findSolid()