From e6b44cfe52c9e18726351dd31b067a8d7aea479c Mon Sep 17 00:00:00 2001 From: hasecilu Date: Sat, 16 Nov 2024 14:15:04 -0600 Subject: [PATCH] Fix typo on script example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf5f254..af1925d 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ Use the power of python to automate your gear modeling: import FreeCAD as App import freecad.gears.commands gear = freecad.gears.commands.CreateInvoluteGear.create() -gear.teeth = 20 +gear.num_teeth = 20 gear.beta = 20 gear.height = 10 gear.double_helix = True