Change stl reader behaviour on extension .stl , Don't check for the solid keyword explicitly

This commit is contained in:
Jan Möbius
2020-10-09 09:33:28 +02:00
parent 2667c669c4
commit 5f3f57e8cb
2 changed files with 5 additions and 1 deletions

View File

@@ -468,7 +468,6 @@ check_stl_type(const std::string& _filename) const
fread(dummy, 1, 80, in);
size_t nT = read_int(in, swapFlag);
// compute file size from nT
size_t binary_size = 84 + nT*50;