Changed comparison for points - fixes issue if bone is at plunge point.
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user