fix tokenizeNextLine
This commit is contained in:
parent
4db69febbe
commit
e98422ee49
wrap/io_trimesh
|
@ -604,7 +604,7 @@ static int Open( OpenMeshType &m, const char * filename, Info &oi)
|
|||
if(from!=length)
|
||||
{
|
||||
to = from+1;
|
||||
while (to!=length && line[to]!=' ' && line[to]!='\r')
|
||||
while (to!=length && line[to]!=' ' && line[to] != '\t' && line[to]!='\r')
|
||||
to++;
|
||||
tokens.push_back(line.substr(from, to-from).c_str());
|
||||
from = to;
|
||||
|
|
Loading…
Reference in New Issue