Corrected two wrong indexes on the access to the vertexes of a face while compacting the face vector: just a typo mistake.
This commit is contained in:
parent
7747e6097f
commit
4260535fa6
|
@ -848,7 +848,7 @@ void ResizeAttribute(ATTR_CONT &c,const int & sz , MeshType &/*m*/){
|
||||||
{
|
{
|
||||||
m.face[pos].ImportData(m.face[i]);
|
m.face[pos].ImportData(m.face[i]);
|
||||||
for(int j=0;j<m.face[i].VN();++j)
|
for(int j=0;j<m.face[i].VN();++j)
|
||||||
m.face[pos].V(i) = m.face[i].V(i);
|
m.face[pos].V(j) = m.face[i].V(j);
|
||||||
|
|
||||||
if(HasVFAdjacency(m))
|
if(HasVFAdjacency(m))
|
||||||
for(int j=0;j<m.face[i].VN();++j)
|
for(int j=0;j<m.face[i].VN();++j)
|
||||||
|
|
Loading…
Reference in New Issue