Skip to content

Commit

Permalink
Draft: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Nov 24, 2013
1 parent b8eb776 commit 816cee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Draft/DraftGeomUtils.py
Expand Up @@ -1040,7 +1040,7 @@ def connect(edges,closed=False):
nedges.append(Part.Line(v1,v2).toShape())
elif geomType(curr) == "Circle":
if v1 != v2:
nedges.append(Part.Arc(v1,findMidPoint(curr),v2))
nedges.append(Part.Arc(v1,findMidpoint(curr),v2))
try:
return Part.Wire(nedges)
except:
Expand Down

0 comments on commit 816cee5

Please sign in to comment.