mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
OCC22300 Debugging information is dumped in optimized version by STL reading API
This commit is contained in:
parent
8a2427055a
commit
ed48237999
@ -27,7 +27,7 @@ static const int SIZEOF_STL_FACET = 50;
|
|||||||
static const int STL_MIN_FILE_SIZE = 284;
|
static const int STL_MIN_FILE_SIZE = 284;
|
||||||
static const int ASCII_LINES_PER_FACET = 7;
|
static const int ASCII_LINES_PER_FACET = 7;
|
||||||
|
|
||||||
//=============== =======================================================
|
//=======================================================================
|
||||||
//function : WriteInteger
|
//function : WriteInteger
|
||||||
//purpose : writing a Little Endian 32 bits integer
|
//purpose : writing a Little Endian 32 bits integer
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
@ -302,9 +302,9 @@ Handle_StlMesh_Mesh RWStl::ReadFile(const OSD_Path& aPath)
|
|||||||
IsAscii = Standard_False;
|
IsAscii = Standard_False;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifdef DEB
|
||||||
printf("%s\n",(IsAscii?"ascii":"binary"));
|
cout << (IsAscii ? "ascii\n" : "binary\n");
|
||||||
|
#endif
|
||||||
file.Close();
|
file.Close();
|
||||||
|
|
||||||
if (IsAscii) {
|
if (IsAscii) {
|
||||||
@ -437,8 +437,9 @@ Handle_StlMesh_Mesh RWStl::ReadAscii(const OSD_Path& aPath)
|
|||||||
|
|
||||||
// skip header
|
// skip header
|
||||||
while (getc(file) != '\n');
|
while (getc(file) != '\n');
|
||||||
|
#ifdef DEB
|
||||||
cout<< "start mesh\n";
|
cout << "start mesh\n";
|
||||||
|
#endif
|
||||||
ReadMesh = new StlMesh_Mesh();
|
ReadMesh = new StlMesh_Mesh();
|
||||||
ReadMesh->AddDomain();
|
ReadMesh->AddDomain();
|
||||||
|
|
||||||
@ -469,8 +470,9 @@ Handle_StlMesh_Mesh RWStl::ReadAscii(const OSD_Path& aPath)
|
|||||||
fscanf(file,"%*s");
|
fscanf(file,"%*s");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#ifdef DEB
|
||||||
cout<< "end mesh\n"<<endl;
|
cout << "end mesh\n";
|
||||||
|
#endif
|
||||||
fclose(file);
|
fclose(file);
|
||||||
return ReadMesh;
|
return ReadMesh;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user