reversed the order of VFOrderedStar when it has found a border.. in order to be coherent with the others
This commit is contained in:
parent
0ebdeb2bc9
commit
dcb7182d3f
|
@ -1175,6 +1175,8 @@ void VFOrderedStarFF(const Pos<FaceType> &startPos,
|
|||
assert((posVec.size()%2)==0);
|
||||
posVec.erase(posVec.begin()+firstBorderInd+1+halfSize, posVec.end());
|
||||
posVec.erase(posVec.begin(),posVec.begin()+firstBorderInd+1);
|
||||
//reverse because canceled on ccw dir
|
||||
std::reverse(posVec.begin(), posVec.end());
|
||||
assert(posVec.size()==halfSize);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue