Skip to content

Commit 73f6b7f

Browse files
committed
Merge branch 'develop' of https://github.com/looooo/freecad.gears into develop
2 parents 5909949 + b4783df commit 73f6b7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

freecad/gears/features.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1606,7 +1606,7 @@ def helicalextrusion(face, height, angle, double_helix=False):
16061606
"""
16071607
A helical extrusion using the BRepOffsetAPI
16081608
face -- the face to extrude (may contain holes, i.e. more then one wires)
1609-
height -- the hight of the extrusion, normal to the face
1609+
height -- the height of the extrusion, normal to the face
16101610
angle -- the twist angle of the extrusion in radians
16111611
16121612
returns a solid
@@ -1618,7 +1618,7 @@ def helicalextrusion(face, height, angle, double_helix=False):
16181618
if double_helix:
16191619
spine = Part.makeHelix(pitch, height / 2.0, radius, cone_angle, direction)
16201620
spine.translate(App.Vector(0, 0, height / 2.0))
1621-
face = face.translated(App.Vector(0, 0, height / 2.0)) # don't transfrom our argument
1621+
face = face.translated(App.Vector(0, 0, height / 2.0)) # don't transform our argument
16221622
else:
16231623
spine = Part.makeHelix(pitch, height, radius, cone_angle, direction)
16241624
def make_pipe(path, profile):

0 commit comments

Comments
 (0)