diff --git a/include/osgAnimation/RigTransformSoftware b/include/osgAnimation/RigTransformSoftware index eca71eba8..a8d817e64 100644 --- a/include/osgAnimation/RigTransformSoftware +++ b/include/osgAnimation/RigTransformSoftware @@ -49,12 +49,6 @@ namespace osgAnimation const Bone * getBonePtr()const{return _boneptr.get();} void setBonePtr(Bone*b){_boneptr=b;} - bool operator==(const BonePtrWeight& b) const { return (getBoneName() == b.getBoneName() && getWeight() == b.getWeight()); } - //default order : sort by weight desc and bonename if equal - /*bool operator<(const BoneWeight& bw2)const{ if (_weight > bw2._weight)return true; - if (_weight < bw2._weight)return false; - return(_boneName _boneptr; };