From a5f6e4b0c43e1a795b37a6b1a6b13c697d61a101 Mon Sep 17 00:00:00 2001 From: OpenSceneGraph git repository Date: Sat, 11 Nov 2017 12:45:55 +0000 Subject: [PATCH] Small readability improvements --- include/osgAnimation/VertexInfluence | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgAnimation/VertexInfluence b/include/osgAnimation/VertexInfluence index 256d9c198..1bf1e6e01 100644 --- a/include/osgAnimation/VertexInfluence +++ b/include/osgAnimation/VertexInfluence @@ -65,7 +65,7 @@ namespace osgAnimation void cullInfluenceCountPerVertex(unsigned int maxnumbonepervertex, float minweight=0, bool renormalize=true); //compute PerVertexInfluenceList - void computePerVertexInfluenceList(std::vector& perVertexInfluenceList, unsigned int numvert)const; + void computePerVertexInfluenceList(std::vector& perVertexInfluenceList, unsigned int numvert) const; /// map a set of boneinfluence to a list of vertex indices sharing this set class VertexGroup: public std::pair @@ -77,7 +77,7 @@ namespace osgAnimation }; /// compute the minimal VertexGroup Set in which vertices shares the same influence set - void computeMinimalVertexGroupList(std::vector&uniqVertexGroupList, unsigned int numvert)const; + void computeMinimalVertexGroupList(std::vector&uniqVertexGroupList, unsigned int numvert) const; //Experimental removal of unexpressed bone from the skeleton void removeUnexpressedBones(Skeleton &skel) const;