From a0533b7c46c143b68fe8cfed70d3f8ea36c58367 Mon Sep 17 00:00:00 2001 From: ml Date: Fri, 6 Jan 2017 22:16:09 -0800 Subject: [PATCH] Changed comparison for points - fixes issue if bone is at plunge point. --- src/Mod/Path/PathScripts/PathDressupDogbone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathDressupDogbone.py b/src/Mod/Path/PathScripts/PathDressupDogbone.py index 23e56841b..9aa008b7b 100644 --- a/src/Mod/Path/PathScripts/PathDressupDogbone.py +++ b/src/Mod/Path/PathScripts/PathDressupDogbone.py @@ -275,7 +275,7 @@ class Chord (object): return dir == 'Back' or dir == side def connectsTo(self, chord): - return PathGeom.isRoughly(self.End, chord.Start) + return PathGeom.pointsCoincide(self.End, chord.Start) class Bone: def __init__(self, boneId, obj, lastCommand, inChord, outChord, smooth):