From ad550acc604ff2b468cb9c9b6469f8943ca55a8c Mon Sep 17 00:00:00 2001 From: Julien Valentin Date: Mon, 28 Aug 2017 17:13:48 +0200 Subject: [PATCH] clean unused --- include/osgAnimation/RigTransformSoftware | 6 ------ 1 file changed, 6 deletions(-) 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; };