From 7cb84f17e110f44eb2f663a8195147340397c40b Mon Sep 17 00:00:00 2001 From: looooo Date: Thu, 30 Sep 2021 11:26:58 +0200 Subject: [PATCH] minor fix for the cycloide gear --- freecad/gears/features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freecad/gears/features.py b/freecad/gears/features.py index a0317c1..a63997f 100644 --- a/freecad/gears/features.py +++ b/freecad/gears/features.py @@ -742,7 +742,7 @@ class CycloidGear(BaseGear): tooth = Wire(edges) - wi = rotate_tooth(tooth, fp.teeth) + profile = rotate_tooth(tooth, fp.teeth) if fp.height.Value == 0: return profile base = Face(profile)