Corrected bug in the VVExtendedStarVF .

This commit is contained in:
Paolo Cignoni 2015-12-03 22:51:56 +00:00
parent d628c95688
commit a52a1484e6
1 changed files with 1 additions and 1 deletions

View File

@ -793,7 +793,7 @@ void VVExtendedStarVF(typename FaceType::VertexType* vp,
for (unsigned int i=0;i<vertVec.size();i++)
{
std::vector<VertexType *> Vtemp;
vcg::face::VVStarVF<FaceType>(vp,Vtemp);
vcg::face::VVStarVF<FaceType>(vertVec[i],Vtemp);
toAdd.insert(toAdd.end(),Vtemp.begin(),Vtemp.end());
}
vertVec.insert(vertVec.end(),toAdd.begin(),toAdd.end());