# DXFLoader: EOLs.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1119 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/5/head
parent
ad759f6efe
commit
de865532f4
|
@ -506,7 +506,7 @@ void DXFImporter::ParseBlock(DXF::LineReader& reader, DXF::FileData& output)
|
|||
Parse3DFace(++reader, output);
|
||||
continue;
|
||||
}
|
||||
++reader;
|
||||
++reader;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -683,12 +683,12 @@ void DXFImporter::ParsePolyLine(DXF::LineReader& reader, DXF::FileData& output)
|
|||
line.indices.push_back(i*2);
|
||||
line.indices.push_back(i*2+1);
|
||||
line.counts.push_back(2);
|
||||
}
|
||||
}
|
||||
|
||||
// closed polyline?
|
||||
if (line.flags & DXF_POLYLINE_FLAG_CLOSED) {
|
||||
line.indices.push_back(line.positions.size()-1);
|
||||
line.indices.push_back(0);
|
||||
line.indices.push_back(0);
|
||||
line.counts.push_back(2);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue