corrected 1 call of VFStarVF

This commit is contained in:
Nico Pietroni 2012-11-12 12:59:50 +00:00
parent 5aa4e3a489
commit 3864a934da
1 changed files with 2 additions and 1 deletions

View File

@ -677,7 +677,8 @@ static void VFExtendedStarVF(typename FaceType::VertexType* vp,
{
///initialize front
faceVec.clear();
vcg::face::VFStarVF<FaceType>(vp,faceVec);
std::vector<int> indexes;
vcg::face::VFStarVF<FaceType>(vp,faceVec,indexes);
///then dilate front
///for each step
for (int step=0;step<num_step;step++)