From b3eaabe8ea842e22c2f938da4af97a86f366c7c1 Mon Sep 17 00:00:00 2001 From: Dave Cowden Date: Sun, 25 May 2014 10:14:48 -0400 Subject: [PATCH] Fixed typo in workplane --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c26cd6..f36efe1 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ Use these steps if you would like to write CadQuery scripts from inside of the F Thats it. Now when you start FreeCAD, you can do for example: import cadquery - bb = cadquery.Workplan("XY").box(1.0,2.0,3.0) //bb is a cadquery object + bb = cadquery.Workplane("XY").box(1.0,2.0,3.0) //bb is a cadquery object solid = bb.val() //solid is a cadquery solid object Part.show(solid.wrapped) //use the wrapped property of a cadquery primitive to get the FreeCAD version