1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0023192: Regression in writestl command

Processing of arguments in 'writestl' command is corrected
This commit is contained in:
szv 2012-06-06 12:28:45 +04:00
parent c9d4eb9d4a
commit 48a06a3056

View File

@ -94,18 +94,17 @@ static Standard_Integer writestl
<< " shape file [ascii/binary (0/1) : 1 by default] [InParallel (0/1) : 0 by default]" << "\n"; << " shape file [ascii/binary (0/1) : 1 by default] [InParallel (0/1) : 0 by default]" << "\n";
} else { } else {
TopoDS_Shape aShape = DBRep::Get(argv[1]); TopoDS_Shape aShape = DBRep::Get(argv[1]);
Standard_Boolean anASCIIMode = Standard_False; Standard_Boolean isASCIIMode = Standard_False;
Standard_Boolean isInParallel = Standard_False; Standard_Boolean isInParallel = Standard_False;
if (argc==4) { if (argc > 3) {
Standard_Integer mode = atoi(argv[3]); isASCIIMode = (atoi(argv[3]) == 0);
if (mode==0) anASCIIMode = Standard_True; if (argc > 4) {
} isInParallel = (atoi(argv[4]) == 1);
if (argc==5) {
isInParallel = atoi(argv[4]) == 1;
Standard::SetReentrant(isInParallel); Standard::SetReentrant(isInParallel);
} }
}
StlAPI_Writer aWriter; StlAPI_Writer aWriter;
aWriter.ASCIIMode() = anASCIIMode; aWriter.ASCIIMode() = isASCIIMode;
aWriter.Write (aShape, argv[2], isInParallel); aWriter.Write (aShape, argv[2], isInParallel);
} }
return 0; return 0;