Merge pull request #7848 from sxntxn/OBJ_read_arbitrary_whitespace

CGAL::IO::Internal::read_OBJ(): allow arbitrary whitespace in "f" lines
This commit is contained in:
Laurent Rineau 2024-04-22 14:54:14 +02:00
commit 1f999bf8fd
1 changed files with 5 additions and 2 deletions

View File

@ -136,8 +136,11 @@ bool read_OBJ(std::istream& is,
}
// the format can be "f v1/vt1/vn1 v2/vt2/vn2 v3/vt3/vn3 ..." and we only read vertex ids for now,
// so skip to the next vertex
iss.ignore(256, ' ');
// so skip to the next vertex, but be tolerant about which whitespace is used
if (!std::isspace(iss.peek())) {
std::string ignoreme;
iss >> ignoreme;
}
}
if(iss.bad())