fixed little bug in color index

This commit is contained in:
granzuglia 2009-05-13 17:08:40 +00:00
parent 2af46da74c
commit be047e9a82
1 changed files with 2 additions and 2 deletions

View File

@ -440,8 +440,8 @@ typedef typename SaveMeshType::CoordType CoordType;
for(FaceIterator fit = m.face.begin();fit != m.face.end();++fit)
{
idtf.write(4,TextUtility::nmbToStr(nn) + " " +
TextUtility::nmbToStr(nn + 2) + " " +
TextUtility::nmbToStr(nn + 1));
TextUtility::nmbToStr(nn + 1) + " " +
TextUtility::nmbToStr(nn + 2));
nn += 3;
}
idtf.write(3,"}");