mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0030895: Coding Rules - specify std namespace explicitly for std::cout and streams
"endl" manipulator for Message_Messenger is renamed to "Message_EndLine". The following entities from std namespace are now used with std:: explicitly specified (from Standard_Stream.hxx): std::istream,std::ostream,std::ofstream,std::ifstream,std::fstream, std::filebuf,std::streambuf,std::streampos,std::ios,std::cout,std::cerr, std::cin,std::endl,std::ends,std::flush,std::setw,std::setprecision, std::hex,std::dec.
This commit is contained in:
parent
3977d18aca
commit
0423218095
@ -596,8 +596,8 @@ void GeomConstraints_Presentation::sample3()
|
||||
aFileName += "\\points.dat";
|
||||
|
||||
// open file
|
||||
ifstream aFile;
|
||||
aFile.open(aFileName.ToCString(), ios::failbit);
|
||||
std::ifstream aFile;
|
||||
aFile.open(aFileName.ToCString(), std::ios::failbit);
|
||||
if(!aFile)
|
||||
{
|
||||
aFileName += " was not found. The sample can not be shown.";
|
||||
|
@ -80,7 +80,7 @@ void GeoAlgo_Sol::Build(const TColgp_SequenceOfXYZ& seqOfXYZ)
|
||||
|
||||
//Filling plate
|
||||
Plate_Plate myPlate;
|
||||
cout<<" * Nunber of points = "<< nbPnt << endl;
|
||||
std::cout<<" * Nunber of points = "<< nbPnt << std::endl;
|
||||
for (i=1; i<= nbPnt; i++) {
|
||||
gp_Pnt ptProj(seqOfXYZ.Value(i).X(), seqOfXYZ.Value(i).Y(), 0. );
|
||||
gp_Vec aVec( ptProj, seqOfXYZ.Value(i));
|
||||
@ -90,7 +90,7 @@ void GeoAlgo_Sol::Build(const TColgp_SequenceOfXYZ& seqOfXYZ)
|
||||
}
|
||||
myPlate.SolveTI(2, 1.);// resolution
|
||||
if (!myPlate.IsDone()) {
|
||||
cout<<" plate computation has failed"<< endl;
|
||||
std::cout<<" plate computation has failed"<< std::endl;
|
||||
myIsDone=Standard_False;
|
||||
}
|
||||
|
||||
@ -144,11 +144,11 @@ Handle(Geom_BSplineSurface) GeoAlgo_Sol::Read(const Standard_CString aGroundName
|
||||
Standard_Integer nbPnt=0;
|
||||
|
||||
// Read points from the file
|
||||
filebuf fic;
|
||||
istream in(&fic);
|
||||
std::filebuf fic;
|
||||
std::istream in(&fic);
|
||||
|
||||
if (!fic.open(aGroundName,ios::in)){
|
||||
cout << " impossible to open a file : "<<aGroundName<<endl;
|
||||
if (!fic.open(aGroundName,std::ios::in)){
|
||||
std::cout << " impossible to open a file : "<<aGroundName<<std::endl;
|
||||
myIsDone = Standard_False;
|
||||
return 0;
|
||||
}
|
||||
|
@ -1217,7 +1217,7 @@ Standard_Real ang = D1.Angle(D2); \n\
|
||||
Handle(ISession_Direction) aDirection2 = new ISession_Direction(gp_Pnt(0,0,0),D2,3);
|
||||
aDoc->GetAISContext()->Display(aDirection2, Standard_False);
|
||||
|
||||
cout<<" D1.Angle(D2) : "<<ang<<endl;
|
||||
std::cout<<" D1.Angle(D2) : "<<ang<<std::endl;
|
||||
|
||||
TCollection_AsciiString Message2 (ang);
|
||||
TCollection_AsciiString Message3 (ang/M_PI/180);
|
||||
|
@ -1081,9 +1081,9 @@ void CGeometryDoc::OnCreateSol()
|
||||
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
|
||||
CString filename = dlg.GetPathName();
|
||||
|
||||
filebuf fic;
|
||||
istream in(&fic);
|
||||
if (!fic.open (filename, ios::in))
|
||||
std::filebuf fic;
|
||||
std::istream in(&fic);
|
||||
if (!fic.open (filename, std::ios::in))
|
||||
MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"Error : Unable to open file", L"CasCade Error", MB_ICONERROR);
|
||||
|
||||
TColgp_SequenceOfXYZ seqOfXYZ;
|
||||
@ -1162,7 +1162,7 @@ void CGeometryDoc::OnSimplify()
|
||||
|
||||
std::filebuf aFileBuf;
|
||||
std::istream aStream (&aFileBuf);
|
||||
if (!aFileBuf.open (initfile, ios::in))
|
||||
if (!aFileBuf.open (initfile, std::ios::in))
|
||||
{
|
||||
initfile += L" was not found. The sample can not be shown.";
|
||||
myCResultDialog.SetText (initfile);
|
||||
|
@ -4949,9 +4949,9 @@ void CModelingDoc::InputEvent(const Standard_Integer /*x*/,
|
||||
((OCC_MainFrame*)AfxGetMainWnd())->SetStatusMessage("Building the tangent surface...");
|
||||
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
|
||||
CString filename = dlg.GetPathName();
|
||||
filebuf fic;
|
||||
istream in(&fic);
|
||||
if (!fic.open(filename, ios::in))
|
||||
std::filebuf fic;
|
||||
std::istream in(&fic);
|
||||
if (!fic.open(filename, std::ios::in))
|
||||
MessageBoxW (AfxGetApp()->m_pMainWnd->m_hWnd, L"Error : Unable to open file", L"CasCade Error", MB_ICONERROR);
|
||||
Standard_Real x,y,z;
|
||||
BRep_Builder B;
|
||||
|
@ -233,7 +233,7 @@ void CViewer2dDoc::OnBUTTONTestFace()
|
||||
|
||||
std::filebuf aFileBuf;
|
||||
std::istream aStream (&aFileBuf);
|
||||
if (!aFileBuf.open (dlg.GetPathName(), ios::in))
|
||||
if (!aFileBuf.open (dlg.GetPathName(), std::ios::in))
|
||||
{
|
||||
AfxMessageBox (L"The shape must be not a null Face");
|
||||
return;
|
||||
|
@ -164,7 +164,7 @@ Standard_Boolean TexturesExt_Presentation::loadShape(TopoDS_Shape& aShape,
|
||||
|
||||
std::filebuf aFileBuf;
|
||||
std::istream aStream (&aFileBuf);
|
||||
if (!aFileBuf.open (initfile, ios::in))
|
||||
if (!aFileBuf.open (initfile, std::ios::in))
|
||||
{
|
||||
initfile += L" was not found. The sample can not be shown.";
|
||||
getDocument()->UpdateResultMessageDlg ("Textured Shape", initfile);
|
||||
|
@ -936,7 +936,7 @@ void CViewer3dDoc::DoSample()
|
||||
catch (Standard_Failure const& anException)
|
||||
{
|
||||
Standard_SStream aSStream;
|
||||
aSStream << "An exception was caught: " << anException << ends;
|
||||
aSStream << "An exception was caught: " << anException << std::ends;
|
||||
CString aMsg = aSStream.str().c_str();
|
||||
AfxMessageBox (aMsg);
|
||||
}
|
||||
|
@ -925,7 +925,7 @@ void COcafDoc::OnFileSaveAs()
|
||||
CWaitCursor aWaitCursor;
|
||||
CString CSPath = dlg.GetPathName();
|
||||
|
||||
cout << "Save As " << CSPath << endl;
|
||||
std::cout << "Save As " << CSPath << std::endl;
|
||||
PathName=CSPath;
|
||||
const wchar_t* SPath = CSPath;
|
||||
TCollection_ExtendedString TPath (SPath);
|
||||
|
@ -76,7 +76,7 @@ Standard_Boolean TOcafFunction_CutDriver::MustExecute(const Handle(TFunction_Log
|
||||
*/
|
||||
TCollection_AsciiString aEntry;
|
||||
TDF_Tool::Entry(Label(), aEntry);
|
||||
cout << "Entry: "<<aEntry.ToCString()<<endl;
|
||||
std::cout << "Entry: "<<aEntry.ToCString()<<std::endl;
|
||||
Label().FindChild(1).FindAttribute(TDF_Reference::GetID(),OriginalRef);
|
||||
if (log->IsModified(OriginalRef->Get())) return Standard_True; // Original shape.
|
||||
|
||||
|
@ -425,7 +425,7 @@ void Tesselate_Presentation::sample(const Standard_CString aFileName)
|
||||
|
||||
std::filebuf aFileBuf;
|
||||
std::istream aStream (&aFileBuf);
|
||||
if (!aFileBuf.open (initfile, ios::in))
|
||||
if (!aFileBuf.open (initfile, std::ios::in))
|
||||
{
|
||||
initfile += L" was not found. The sample can not be shown.";
|
||||
GetDocument()->PocessTextInDialog ("Compute the triangulation on a shape", initfile);
|
||||
|
@ -349,7 +349,7 @@ void CTriangulationDoc::DoSample()
|
||||
catch (Standard_Failure const& anException)
|
||||
{
|
||||
Standard_SStream aSStream;
|
||||
aSStream << "An exception was caught: " << anException << ends;
|
||||
aSStream << "An exception was caught: " << anException << std::ends;
|
||||
CString aMsg = aSStream.str().c_str();
|
||||
// aSStream.rdbuf()->freeze(0); // allow deletion of dynamic array
|
||||
AfxMessageBox (aMsg);
|
||||
|
@ -83,35 +83,35 @@ CAnimationDoc::CAnimationDoc()
|
||||
std::filebuf aFileBuf;
|
||||
std::istream aStream (&aFileBuf);
|
||||
CString aPathCrankArm = aDataDirPath + "\\CrankArm.rle";
|
||||
if (aFileBuf.open (aPathCrankArm, ios::in))
|
||||
if (aFileBuf.open (aPathCrankArm, std::ios::in))
|
||||
{
|
||||
BRepTools::Read (CrankArm, aStream, B);
|
||||
aFileBuf.close();
|
||||
}
|
||||
|
||||
CString aPathCylinderHead = aDataDirPath + "\\CylinderHead.rle";
|
||||
if (aFileBuf.open (aPathCylinderHead, ios::in))
|
||||
if (aFileBuf.open (aPathCylinderHead, std::ios::in))
|
||||
{
|
||||
BRepTools::Read (CylinderHead, aStream, B);
|
||||
aFileBuf.close();
|
||||
}
|
||||
|
||||
CString aPathPropeller = aDataDirPath + "\\Propeller.rle";
|
||||
if (aFileBuf.open (aPathPropeller, ios::in))
|
||||
if (aFileBuf.open (aPathPropeller, std::ios::in))
|
||||
{
|
||||
BRepTools::Read (Propeller, aStream, B);
|
||||
aFileBuf.close();
|
||||
}
|
||||
|
||||
CString aPathPiston = aDataDirPath + "\\Piston.rle";
|
||||
if (aFileBuf.open (aPathPiston, ios::in))
|
||||
if (aFileBuf.open (aPathPiston, std::ios::in))
|
||||
{
|
||||
BRepTools::Read (Piston, aStream, B);
|
||||
aFileBuf.close();
|
||||
}
|
||||
|
||||
CString aPathEngineBlock = aDataDirPath + "\\EngineBlock.rle";
|
||||
if (aFileBuf.open (aPathEngineBlock, ios::in))
|
||||
if (aFileBuf.open (aPathEngineBlock, std::ios::in))
|
||||
{
|
||||
BRepTools::Read (EngineBlock, aStream, B);
|
||||
aFileBuf.close();
|
||||
|
@ -49,7 +49,7 @@ Handle(TColStd_HArray2OfReal) ReadRegularGrid(CString FileName,
|
||||
if (fp)
|
||||
{
|
||||
fscanf_s(fp, "%d %d", &R2, &C2);
|
||||
cout << "Reading Grid : ( " << R2 << " , " << C2 << " )." << endl;
|
||||
std::cout << "Reading Grid : ( " << R2 << " , " << C2 << " )." << std::endl;
|
||||
|
||||
H = new TColStd_HArray2OfReal(C1, C2, R1, R2);
|
||||
|
||||
@ -83,14 +83,14 @@ Handle(TColStd_HArray2OfReal) ReadRegularGrid(CString FileName,
|
||||
}
|
||||
}
|
||||
|
||||
cout << "Deltax = " << Deltax << endl;
|
||||
cout << "Deltay = " << Deltay << endl;
|
||||
std::cout << "Deltax = " << Deltax << std::endl;
|
||||
std::cout << "Deltay = " << Deltay << std::endl;
|
||||
|
||||
fclose(fp);
|
||||
}
|
||||
else
|
||||
{
|
||||
cout << "cannot open file : " << FileName << endl;
|
||||
std::cout << "cannot open file : " << FileName << std::endl;
|
||||
}
|
||||
return H;
|
||||
}
|
||||
|
@ -153,7 +153,7 @@ void COCCDemoDoc::DoSample()
|
||||
catch (Standard_Failure const& anException)
|
||||
{
|
||||
Standard_SStream aSStream;
|
||||
aSStream << "An exception was caught: " << anException << ends;
|
||||
aSStream << "An exception was caught: " << anException << std::ends;
|
||||
CString aMsg = aSStream.str().c_str();
|
||||
AfxMessageBox (aMsg);
|
||||
}
|
||||
|
@ -156,7 +156,7 @@ Standard_Boolean CImportExport::ReadBREP(CString aFileName,
|
||||
|
||||
std::filebuf aFileBuf;
|
||||
std::istream aStream (&aFileBuf);
|
||||
if (!aFileBuf.open (aFileName, ios::in))
|
||||
if (!aFileBuf.open (aFileName, std::ios::in))
|
||||
{
|
||||
return Standard_False;
|
||||
}
|
||||
@ -230,7 +230,7 @@ Standard_Boolean CImportExport::SaveBREP (CString aFileName,
|
||||
{
|
||||
std::filebuf aFileBuf;
|
||||
std::ostream aStream (&aFileBuf);
|
||||
if (!aFileBuf.open (aFileName, ios::out))
|
||||
if (!aFileBuf.open (aFileName, std::ios::out))
|
||||
{
|
||||
return Standard_False;
|
||||
}
|
||||
@ -811,7 +811,7 @@ Standard_Boolean CImportExport::SaveVRML(const Standard_CString&
|
||||
} // iterator of shapes
|
||||
|
||||
// Call VRML writer
|
||||
ofstream writer(aFileName);
|
||||
std::ofstream writer(aFileName);
|
||||
writer<<scene;
|
||||
writer.close();
|
||||
|
||||
|
@ -129,7 +129,7 @@ case 6: //color
|
||||
// This triangulation is computed with the deflection myDeflection.
|
||||
|
||||
#ifdef DEBUG
|
||||
cout <<"Deflection = " << myDeflection << "\n" << endl;
|
||||
std::cout <<"Deflection = " << myDeflection << "\n" << std::endl;
|
||||
#endif
|
||||
|
||||
Standard_Integer NumFace;
|
||||
@ -145,7 +145,7 @@ case 6: //color
|
||||
TopLoc_Location myLocation = myFace.Location();
|
||||
|
||||
#ifdef DEBUG
|
||||
cout << "J\'explore actuellement la face " << NumFace << "\n" << endl;
|
||||
std::cout << "J\'explore actuellement la face " << NumFace << "\n" << std::endl;
|
||||
#endif
|
||||
Handle(Poly_Triangulation) myT = BRep_Tool::Triangulation(myFace, myLocation);
|
||||
// Returns the Triangulation of the face. It is a null handle if there is no triangulation.
|
||||
@ -153,7 +153,7 @@ case 6: //color
|
||||
if (myT.IsNull())
|
||||
{
|
||||
#ifdef DEBUG
|
||||
// cout << "Triangulation of the face "<< i <<" is null \n"<< endl;
|
||||
// std::cout << "Triangulation of the face "<< i <<" is null \n"<< std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@ -200,7 +200,7 @@ case 6: //color
|
||||
TopLoc_Location myLocation = myFace.Location();
|
||||
|
||||
#ifdef DEBUG
|
||||
cout << "J\'explore actuellement la face " << NumFace << "\n" << endl;
|
||||
std::cout << "J\'explore actuellement la face " << NumFace << "\n" << std::endl;
|
||||
#endif
|
||||
Handle(Poly_Triangulation) myT = BRep_Tool::Triangulation(myFace, myLocation);
|
||||
// Returns the Triangulation of the face. It is a null handle if there is no triangulation.
|
||||
@ -208,7 +208,7 @@ case 6: //color
|
||||
if (myT.IsNull())
|
||||
{
|
||||
#ifdef DEBUG
|
||||
//cout << "Triangulation of the face "<< i <<" is null \n"<< endl;
|
||||
//std::cout << "Triangulation of the face "<< i <<" is null \n"<< std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@ -255,7 +255,7 @@ case 6: //color
|
||||
for (nt = 1; nt <= nnn; nt++)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
cout << "On traite actuellement le triangle : "<< nt <<"\n";
|
||||
std::cout << "On traite actuellement le triangle : "<< nt <<"\n";
|
||||
#endif
|
||||
if (myFace.Orientation() == TopAbs_REVERSED) // si la face est "reversed"
|
||||
triangles(nt).Get(n1,n3,n2); // le triangle est n1,n3,n2
|
||||
|
@ -50,7 +50,7 @@ int AFXAPI AfxWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
||||
// int i = setvbuf( stdout, NULL, _IONBF, 0 );
|
||||
// filebuf ff(hCrt);
|
||||
// cout = &ff;
|
||||
cout<<"This Debug Window is defined in WinMain.cpp and will disappear in release mode"<<endl;
|
||||
std::cout<<"This Debug Window is defined in WinMain.cpp and will disappear in release mode"<<std::endl;
|
||||
|
||||
#endif // DISPLAYCONSOLE // By Matra
|
||||
|
||||
|
@ -354,7 +354,7 @@ static void Sample()
|
||||
|
||||
Standard_Boolean isverified = constraint->Verified();
|
||||
if( !isverified ) {
|
||||
cout << "Constraint is not valid" << endl;
|
||||
std::cout << "Constraint is not valid" << std::endl;
|
||||
}
|
||||
|
||||
|
||||
|
@ -308,7 +308,7 @@ void Sample()
|
||||
BRepAlgo_Cut mkCUT (OBJECT, TOOL);
|
||||
|
||||
if (!mkCUT.IsDone()) {
|
||||
cout << "CUT: Algorithm failed" << endl;
|
||||
std::cout << "CUT: Algorithm failed" << std::endl;
|
||||
return;
|
||||
} else
|
||||
{
|
||||
@ -318,7 +318,7 @@ void Sample()
|
||||
|
||||
if (!BRepAlgo::IsValid(Larg, mkCUT.Shape(), Standard_True, Standard_False)) {
|
||||
|
||||
cout << "CUT: Result is not valid" << endl;
|
||||
std::cout << "CUT: Result is not valid" << std::endl;
|
||||
return;
|
||||
} else
|
||||
{
|
||||
|
@ -101,9 +101,9 @@ static void Sample()
|
||||
Handle(TPrsStd_NamedShapeDriver) driver;
|
||||
|
||||
if( table->FindDriver(driverguid, driver) )
|
||||
cout << "Driver was found " << endl;
|
||||
std::cout << "Driver was found " << std::endl;
|
||||
else
|
||||
cout << "Driver wasn't found" << endl;
|
||||
std::cout << "Driver wasn't found" << std::endl;
|
||||
|
||||
// Driver can be used to build AIS_InteractiveObject for presenting the given label
|
||||
|
||||
|
@ -214,7 +214,7 @@ void MainWindow::compute()
|
||||
}
|
||||
|
||||
aTimer.Show(seconds, minutes, hours, CPUTime);
|
||||
cout << "Execution of "<<graph->getNbThreads()<< " threads took " << hours << " hours, " << minutes << " minutes, " << seconds << " seconds" << endl;
|
||||
std::cout << "Execution of "<<graph->getNbThreads()<< " threads took " << hours << " hours, " << minutes << " minutes, " << seconds << " seconds" << std::endl;
|
||||
|
||||
// Redraw the nodes (change their colour).
|
||||
redrawGraph();
|
||||
|
@ -340,7 +340,7 @@ TranslateDlg* Translate::getDialog( const int format, const bool import )
|
||||
filter.append( "\t" );
|
||||
}
|
||||
|
||||
cout << filter.toLatin1().constData() << endl;
|
||||
std::cout << filter.toLatin1().constData() << std::endl;
|
||||
QStringList filters = filter.split( "\t" );
|
||||
myDlg->setNameFilters ( filters );
|
||||
|
||||
|
@ -273,7 +273,7 @@ Standard_Boolean MainPage::SaveBREP(const wchar_t* theFilePath, const TopoDS_Sha
|
||||
std::filebuf aFileBuf;
|
||||
std::ostream aStream(&aFileBuf);
|
||||
|
||||
if (!aFileBuf.open(theFilePath, ios::out)) {
|
||||
if (!aFileBuf.open(theFilePath, std::ios::out)) {
|
||||
Output_TextBlock->Text += L"Error: cannot open file for export (brep)\n";
|
||||
return Standard_False;
|
||||
}
|
||||
@ -291,7 +291,7 @@ Standard_Boolean MainPage::SaveIGES(const wchar_t* theFilePath, const TopoDS_Sha
|
||||
std::filebuf aFileBuf;
|
||||
std::ostream aStream(&aFileBuf);
|
||||
|
||||
if (!aFileBuf.open(theFilePath, ios::out)) {
|
||||
if (!aFileBuf.open(theFilePath, std::ios::out)) {
|
||||
Output_TextBlock->Text += L"Error: cannot open file for export (iges)\n";
|
||||
return Standard_False;
|
||||
}
|
||||
@ -319,7 +319,7 @@ Standard_Boolean MainPage::SaveSTEP(const wchar_t* theFilePath, const TopoDS_Sha
|
||||
std::filebuf aFileBuf;
|
||||
std::ostream aStream(&aFileBuf);
|
||||
|
||||
if (!aFileBuf.open(theFilePath, ios::out)) {
|
||||
if (!aFileBuf.open(theFilePath, std::ios::out)) {
|
||||
Output_TextBlock->Text += L"Error: cannot open file for export (step)\n";
|
||||
return Standard_False;
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ mySAttach(0.,0.,0.)
|
||||
myArrowSize = fabs (myVal/10.0);
|
||||
if (myArrowSize > 30.) myArrowSize = 30.;
|
||||
if (myArrowSize < 15.) myArrowSize = 15.;
|
||||
//cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<endl;
|
||||
//std::cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<std::endl;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -95,7 +95,7 @@ void AIS_OffsetDimension::Compute(const Handle(PrsMgr_PresentationManager3d)&,
|
||||
myArrowSize = fabs (myVal/10.0);
|
||||
if (myArrowSize > 30.) myArrowSize = 30.;
|
||||
if (myArrowSize < 15.) myArrowSize = 15.;
|
||||
//cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<endl;
|
||||
//std::cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<std::endl;
|
||||
|
||||
BRepAdaptor_Surface surf1(TopoDS::Face(myFShape));
|
||||
BRepAdaptor_Surface surf2(TopoDS::Face(mySShape));
|
||||
@ -163,7 +163,7 @@ void AIS_OffsetDimension::ComputeSelection(const Handle(SelectMgr_Selection)& aS
|
||||
myArrowSize = fabs (myVal/10.0);
|
||||
if (myArrowSize > 30.) myArrowSize = 30.;
|
||||
if (myArrowSize < 15.) myArrowSize = 15.;
|
||||
//cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<endl;
|
||||
//std::cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<std::endl;
|
||||
gp_Pnt myTFAttach = myFAttach.Transformed (myRelativePos);
|
||||
gp_Pnt myTSAttach = mySAttach.Transformed (myRelativePos);
|
||||
gp_Dir myTDirAttach = myDirAttach.Transformed (myRelativePos);
|
||||
@ -325,7 +325,7 @@ void AIS_OffsetDimension::ComputeTwoAxesOffset(const Handle(Prs3d_Presentation)&
|
||||
|
||||
Handle(Prs3d_DimensionAspect) la = myDrawer->DimensionAspect();
|
||||
Handle(Prs3d_ArrowAspect) arr = la->ArrowAspect();
|
||||
//cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<endl;
|
||||
//std::cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<std::endl;
|
||||
arr->SetLength(myArrowSize);
|
||||
arr = la->ArrowAspect();
|
||||
arr->SetLength(myArrowSize);
|
||||
@ -431,7 +431,7 @@ void AIS_OffsetDimension::ComputeTwoFacesOffset(const Handle(Prs3d_Presentation)
|
||||
|
||||
Handle(Prs3d_DimensionAspect) la = myDrawer->DimensionAspect();
|
||||
Handle(Prs3d_ArrowAspect) arr = la->ArrowAspect();
|
||||
//cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<endl;
|
||||
//std::cout<<"AIS_OffsetDimension::AIS_OffsetDimension " << myArrowSize << " myArrowSize"<<std::endl;
|
||||
arr->SetLength(myArrowSize);
|
||||
arr = la->ArrowAspect();
|
||||
arr->SetLength(myArrowSize);
|
||||
|
@ -1054,44 +1054,44 @@ Standard_Real
|
||||
void AdvApp2Var_ApproxAFunc2Var::Dump(Standard_OStream& o) const
|
||||
{
|
||||
Standard_Integer iesp=1,NbKU,NbKV,ik;
|
||||
o<<endl;
|
||||
if (!myHasResult) { o<<"No result"<<endl; }
|
||||
o<<std::endl;
|
||||
if (!myHasResult) { o<<"No result"<<std::endl; }
|
||||
else {
|
||||
o<<"There is a result";
|
||||
if (myDone) {
|
||||
o<<" within the requested tolerance "<<my3DTolerances->Value(iesp)<<endl;
|
||||
o<<" within the requested tolerance "<<my3DTolerances->Value(iesp)<<std::endl;
|
||||
}
|
||||
else if (my3DMaxError->Value(iesp)>my3DTolerances->Value(iesp)) {
|
||||
o<<" WITHOUT the requested tolerance "<<my3DTolerances->Value(iesp)<<endl;
|
||||
o<<" WITHOUT the requested tolerance "<<my3DTolerances->Value(iesp)<<std::endl;
|
||||
}
|
||||
else {
|
||||
o<<" WITHOUT the requested continuities "<<endl;
|
||||
o<<" WITHOUT the requested continuities "<<std::endl;
|
||||
}
|
||||
o<<endl;
|
||||
o<<"Result max error :"<<my3DMaxError->Value(iesp)<<endl;
|
||||
o<<"Result average error :"<<my3DAverageError->Value(iesp)<<endl;
|
||||
o<<"Result max error on U frontiers :"<<my3DUFrontError->Value(iesp)<<endl;
|
||||
o<<"Result max error on V frontiers :"<<my3DVFrontError->Value(iesp)<<endl;
|
||||
o<<endl;
|
||||
o<<std::endl;
|
||||
o<<"Result max error :"<<my3DMaxError->Value(iesp)<<std::endl;
|
||||
o<<"Result average error :"<<my3DAverageError->Value(iesp)<<std::endl;
|
||||
o<<"Result max error on U frontiers :"<<my3DUFrontError->Value(iesp)<<std::endl;
|
||||
o<<"Result max error on V frontiers :"<<my3DVFrontError->Value(iesp)<<std::endl;
|
||||
o<<std::endl;
|
||||
o<<"Degree of Bezier patches in U : "<<myDegreeInU
|
||||
<<" in V : "<<myDegreeInV<<endl;
|
||||
o<<endl;
|
||||
<<" in V : "<<myDegreeInV<<std::endl;
|
||||
o<<std::endl;
|
||||
Handle(Geom_BSplineSurface) S
|
||||
= Handle(Geom_BSplineSurface)::DownCast(mySurfaces->Value(iesp));
|
||||
o<<"Number of poles in U : "<<S->NbUPoles()
|
||||
<<" in V : "<<S->NbVPoles()<<endl;
|
||||
o<<endl;
|
||||
<<" in V : "<<S->NbVPoles()<<std::endl;
|
||||
o<<std::endl;
|
||||
NbKU = S->NbUKnots();
|
||||
NbKV = S->NbVKnots();
|
||||
o<<"Number of knots in U : "<<NbKU<<endl;
|
||||
o<<"Number of knots in U : "<<NbKU<<std::endl;
|
||||
for (ik=1;ik<=NbKU;ik++) {
|
||||
o<<" "<<ik<<" : "<<S->UKnot(ik)<<" mult : "<<S->UMultiplicity(ik)<<endl;
|
||||
o<<" "<<ik<<" : "<<S->UKnot(ik)<<" mult : "<<S->UMultiplicity(ik)<<std::endl;
|
||||
}
|
||||
o<<endl;
|
||||
o<<"Number of knots in V : "<<NbKV<<endl;
|
||||
o<<std::endl;
|
||||
o<<"Number of knots in V : "<<NbKV<<std::endl;
|
||||
for (ik=1;ik<=NbKV;ik++) {
|
||||
o<<" "<<ik<<" : "<<S->VKnot(ik)<<" mult : "<<S->VMultiplicity(ik)<<endl;
|
||||
o<<" "<<ik<<" : "<<S->VKnot(ik)<<" mult : "<<S->VMultiplicity(ik)<<std::endl;
|
||||
}
|
||||
o<<endl;
|
||||
o<<std::endl;
|
||||
}
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ static Standard_Boolean lesparam(const Standard_Integer iordre,
|
||||
else {
|
||||
nbpnts = 50;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "F(U, V) : Not enough points of discretization" << endl;
|
||||
std::cout << "F(U, V) : Not enough points of discretization" << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -89,10 +89,10 @@ static void MAPDBN(const Standard_Integer dimension,
|
||||
|
||||
|
||||
if ( (Diff-Der).Norm() > eps * (Der.Norm()+1) ) {
|
||||
cout << " Debug Ft au parametre t+ = " << t << endl;
|
||||
cout << " Positionement sur la derive "<< OrdreDer
|
||||
<< " : " << Der << endl;
|
||||
cout << " Erreur estime : " << (Der-Diff) << endl;
|
||||
std::cout << " Debug Ft au parametre t+ = " << t << std::endl;
|
||||
std::cout << " Positionement sur la derive "<< OrdreDer
|
||||
<< " : " << Der << std::endl;
|
||||
std::cout << " Erreur estime : " << (Der-Diff) << std::endl;
|
||||
}
|
||||
|
||||
// Verif a la fin
|
||||
@ -112,10 +112,10 @@ static void MAPDBN(const Standard_Integer dimension,
|
||||
|
||||
|
||||
if ( (Diff-Der).Norm() > eps * (Der.Norm()+1) ) {
|
||||
cout << " Debug Ft au parametre t- = " << t << endl;
|
||||
cout << " Positionement sur la derive "<< OrdreDer
|
||||
<< " : " << Der << endl;
|
||||
cout << " Erreur estime : " << (Der-Diff) << endl;
|
||||
std::cout << " Debug Ft au parametre t- = " << t << std::endl;
|
||||
std::cout << " Positionement sur la derive "<< OrdreDer
|
||||
<< " : " << Der << std::endl;
|
||||
std::cout << " Erreur estime : " << (Der-Diff) << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1092,25 +1092,25 @@ Standard_Real AdvApprox_ApproxAFunction::AverageError(
|
||||
void AdvApprox_ApproxAFunction::Dump(Standard_OStream& o) const
|
||||
{
|
||||
Standard_Integer ii;
|
||||
o << "Dump of ApproxAFunction" << endl;
|
||||
o << "Dump of ApproxAFunction" << std::endl;
|
||||
if (myNumSubSpaces[0] > 0) {
|
||||
o << "Error(s) 1d = " << endl;
|
||||
o << "Error(s) 1d = " << std::endl;
|
||||
for (ii=1; ii <= myNumSubSpaces[0]; ii++) {
|
||||
o << " " << MaxError(1, ii) << endl;
|
||||
o << " " << MaxError(1, ii) << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
if (myNumSubSpaces[1] > 0) {
|
||||
o << "Error(s) 2d = " << endl;
|
||||
o << "Error(s) 2d = " << std::endl;
|
||||
for (ii=1; ii <= myNumSubSpaces[1]; ii++) {
|
||||
o << " " << MaxError(2, ii) << endl;
|
||||
o << " " << MaxError(2, ii) << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
if (myNumSubSpaces[2] > 0) {
|
||||
o << "Error(s) 3d = " << endl;
|
||||
o << "Error(s) 3d = " << std::endl;
|
||||
for (ii=1; ii <= myNumSubSpaces[2]; ii++) {
|
||||
o << " " << MaxError(3, ii) << endl;
|
||||
o << " " << MaxError(3, ii) << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -232,7 +232,7 @@ void AdvApprox_SimpleApprox::Perform(const TColStd_Array1OfInteger& LocalDimensi
|
||||
}
|
||||
}
|
||||
// for (i=0; i<(WorkDegree+1)*TotalDimension; i++)
|
||||
// cout << " Coeff(" << i << ") = " << Coeff(i) << endl;
|
||||
// std::cout << " Coeff(" << i << ") = " << Coeff(i) << std::endl;
|
||||
// the computing of NewDegree
|
||||
TColStd_Array1OfReal JacCoeff(0, myTotalDimension*(myWorkDegree+1)-1);
|
||||
|
||||
@ -380,9 +380,9 @@ Standard_Real AdvApprox_SimpleApprox::AverageError(const Standard_Integer Index)
|
||||
void AdvApprox_SimpleApprox::Dump(Standard_OStream& o) const
|
||||
{
|
||||
Standard_Integer ii;
|
||||
o << "Dump of SimpleApprox " << endl;
|
||||
o << "Dump of SimpleApprox " << std::endl;
|
||||
for (ii=1; ii <= myTotalNumSS; ii++) {
|
||||
o << "Error " << MaxError(ii) << endl;
|
||||
o << "Error " << MaxError(ii) << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -391,8 +391,8 @@ void AppBlend_AppSurf::InternalPerform(const Handle(TheLine)& Lin,
|
||||
mytol2d = Max(TheTol2d, mytol2d);
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " Tolerances obtenues --> 3d : "<< mytol3d << endl;
|
||||
cout << " --> 2d : "<< mytol2d << endl;
|
||||
std::cout << " Tolerances obtenues --> 3d : "<< mytol3d << std::endl;
|
||||
std::cout << " --> 2d : "<< mytol2d << std::endl;
|
||||
#endif
|
||||
multC = theapprox.SplineValue();
|
||||
}
|
||||
@ -436,8 +436,8 @@ void AppBlend_AppSurf::InternalPerform(const Handle(TheLine)& Lin,
|
||||
theapprox.Perform(multL);
|
||||
theapprox.Error(mytol3d,mytol2d);
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " Tolerances obtenues --> 3d : "<< mytol3d << endl;
|
||||
cout << " --> 2d : "<< mytol2d << endl;
|
||||
std::cout << " Tolerances obtenues --> 3d : "<< mytol3d << std::endl;
|
||||
std::cout << " --> 2d : "<< mytol2d << std::endl;
|
||||
#endif
|
||||
tol3dreached = mytol3d;
|
||||
tol2dreached = mytol2d;
|
||||
@ -498,8 +498,8 @@ void AppBlend_AppSurf::InternalPerform(const Handle(TheLine)& Lin,
|
||||
mytol3d = Variation.MaxError();
|
||||
mytol2d = 0.;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " Tolerances obtenues --> 3d : "<< mytol3d << endl;
|
||||
cout << " --> 2d : "<< mytol2d << endl;
|
||||
std::cout << " Tolerances obtenues --> 3d : "<< mytol3d << std::endl;
|
||||
std::cout << " --> 2d : "<< mytol2d << std::endl;
|
||||
#endif
|
||||
tol3dreached = mytol3d;
|
||||
tol2dreached = mytol2d;
|
||||
@ -827,8 +827,8 @@ void AppBlend_AppSurf::Perform(const Handle(TheLine)& Lin,
|
||||
// modified by EAP Thu Jan 3 15:45:27 2002 ___END___
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " Tolerances obtenues --> 3d : "<< mytol3d << endl;
|
||||
cout << " --> 2d : "<< mytol2d << endl;
|
||||
std::cout << " Tolerances obtenues --> 3d : "<< mytol3d << std::endl;
|
||||
std::cout << " --> 2d : "<< mytol2d << std::endl;
|
||||
#endif
|
||||
tol3dreached = mytol3d;
|
||||
tol2dreached = mytol2d;
|
||||
@ -852,8 +852,8 @@ void AppBlend_AppSurf::Perform(const Handle(TheLine)& Lin,
|
||||
tabVKnots->ChangeArray1()
|
||||
);
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: AppBlend_AppSurf::Perform(), bad length of aParamSeq: " <<
|
||||
aParamSeq.Length() << " instead of " << tabVKnots->Length() << endl;
|
||||
std::cout << "Warning: AppBlend_AppSurf::Perform(), bad length of aParamSeq: " <<
|
||||
aParamSeq.Length() << " instead of " << tabVKnots->Length() << std::endl;
|
||||
#endif
|
||||
}
|
||||
else
|
||||
|
@ -97,8 +97,8 @@ AppDef_MultiPointConstraint AppDef_MultiLine::Value (const Standard_Integer Inde
|
||||
|
||||
void AppDef_MultiLine::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "AppDef_MultiLine dump:" << endl;
|
||||
o << "AppDef_MultiLine dump:" << std::endl;
|
||||
// AppDef_MultiPointConstraint MP = tabMult->Value(1);
|
||||
o << "It contains " << tabMult->Length() << " MultiPointConstraint"<< endl;
|
||||
// o << MP->NbPoints() << " 3d and " << MP->NbPoints2d() << endl;
|
||||
o << "It contains " << tabMult->Length() << " MultiPointConstraint"<< std::endl;
|
||||
// o << MP->NbPoints() << " 3d and " << MP->NbPoints2d() << std::endl;
|
||||
}
|
||||
|
@ -319,5 +319,5 @@ Standard_Boolean AppDef_MultiPointConstraint::IsCurvaturePoint() const
|
||||
|
||||
void AppDef_MultiPointConstraint::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "AppDef_MultiPointConstraint dump:" << endl;
|
||||
o << "AppDef_MultiPointConstraint dump:" << std::endl;
|
||||
}
|
||||
|
@ -582,11 +582,11 @@ void AppDef_Variational::Approximate()
|
||||
{
|
||||
for (jp3d=1;jp3d<=myNbP3d;jp3d++)
|
||||
{
|
||||
// cout << "\n Poles(ipole,1)" << PolesPtr->Value(ipole,index);
|
||||
// std::cout << "\n Poles(ipole,1)" << PolesPtr->Value(ipole,index);
|
||||
P3d.SetX(PolesPtr->Value(ipole,index++));
|
||||
// cout << "\n Poles(ipole,1)" << PolesPtr->Value(ipole,index);
|
||||
// std::cout << "\n Poles(ipole,1)" << PolesPtr->Value(ipole,index);
|
||||
P3d.SetY(PolesPtr->Value(ipole,index++));
|
||||
// cout << "\n Poles(ipole,1)" << PolesPtr->Value(ipole,index);
|
||||
// std::cout << "\n Poles(ipole,1)" << PolesPtr->Value(ipole,index);
|
||||
P3d.SetZ(PolesPtr->Value(ipole,index++));
|
||||
TabP3d.SetValue(jp3d,P3d);
|
||||
}
|
||||
@ -897,32 +897,32 @@ Standard_Integer AppDef_Variational::NbIterations() const
|
||||
//
|
||||
void AppDef_Variational::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << " \nVariational Smoothing " << endl;
|
||||
o << " Number of multipoints " << myNbPoints << endl;
|
||||
o << " Number of 2d par multipoint " << myNbP2d << endl;
|
||||
o << " Nombre of 3d par multipoint " << myNbP3d << endl;
|
||||
o << " Number of PassagePoint " << myNbPassPoints << endl;
|
||||
o << " Number of TangencyPoints " << myNbTangPoints << endl;
|
||||
o << " Number of CurvaturePoints " << myNbCurvPoints << endl;
|
||||
o << " \nTolerance " << o.setf(ios::scientific) << setprecision(3) << setw(9) << myTolerance;
|
||||
if ( WithMinMax()) { o << " as Max Error." << endl;}
|
||||
else { o << " as size Error." << endl;}
|
||||
o << " \nVariational Smoothing " << std::endl;
|
||||
o << " Number of multipoints " << myNbPoints << std::endl;
|
||||
o << " Number of 2d par multipoint " << myNbP2d << std::endl;
|
||||
o << " Nombre of 3d par multipoint " << myNbP3d << std::endl;
|
||||
o << " Number of PassagePoint " << myNbPassPoints << std::endl;
|
||||
o << " Number of TangencyPoints " << myNbTangPoints << std::endl;
|
||||
o << " Number of CurvaturePoints " << myNbCurvPoints << std::endl;
|
||||
o << " \nTolerance " << o.setf(std::ios::scientific) << std::setprecision(3) << std::setw(9) << myTolerance;
|
||||
if ( WithMinMax()) { o << " as Max Error." << std::endl;}
|
||||
else { o << " as size Error." << std::endl;}
|
||||
o << "CriteriumWeights : " << myPercent[0] << " , "
|
||||
<< myPercent[1] << " , " << myPercent[2] << endl;
|
||||
<< myPercent[1] << " , " << myPercent[2] << std::endl;
|
||||
|
||||
if (myIsDone ) {
|
||||
o << " MaxError " << setprecision(3) << setw(9) << myMaxError << endl;
|
||||
o << " Index of MaxError " << myMaxErrorIndex << endl;
|
||||
o << " Average Error " << setprecision(3) << setw(9) << myAverageError << endl;
|
||||
o << " Quadratic Error " << setprecision(3) << setw(9) << myCriterium[0] << endl;
|
||||
o << " Tension Criterium " << setprecision(3) << setw(9) << myCriterium[1] << endl;
|
||||
o << " Flexion Criterium " << setprecision(3) << setw(9) << myCriterium[2] << endl;
|
||||
o << " Jerk Criterium " << setprecision(3) << setw(9) << myCriterium[3] << endl;
|
||||
o << " NbSegments " << myKnots->Length()-1 << endl;
|
||||
o << " MaxError " << std::setprecision(3) << std::setw(9) << myMaxError << std::endl;
|
||||
o << " Index of MaxError " << myMaxErrorIndex << std::endl;
|
||||
o << " Average Error " << std::setprecision(3) << std::setw(9) << myAverageError << std::endl;
|
||||
o << " Quadratic Error " << std::setprecision(3) << std::setw(9) << myCriterium[0] << std::endl;
|
||||
o << " Tension Criterium " << std::setprecision(3) << std::setw(9) << myCriterium[1] << std::endl;
|
||||
o << " Flexion Criterium " << std::setprecision(3) << std::setw(9) << myCriterium[2] << std::endl;
|
||||
o << " Jerk Criterium " << std::setprecision(3) << std::setw(9) << myCriterium[3] << std::endl;
|
||||
o << " NbSegments " << myKnots->Length()-1 << std::endl;
|
||||
}
|
||||
else
|
||||
{ if (myIsOverConstr) o << "The probleme is overconstraint " << endl;
|
||||
else o << " Erreur dans l''approximation" << endl;
|
||||
{ if (myIsOverConstr) o << "The probleme is overconstraint " << std::endl;
|
||||
else o << " Erreur dans l''approximation" << std::endl;
|
||||
}
|
||||
}
|
||||
//
|
||||
@ -2539,7 +2539,7 @@ void AppDef_Variational::Adjusting(
|
||||
TColStd_Array1OfReal& Ecarts)
|
||||
{
|
||||
|
||||
// cout << "=========== Adjusting =============" << endl;
|
||||
// std::cout << "=========== Adjusting =============" << std::endl;
|
||||
|
||||
/* Initialized data */
|
||||
|
||||
|
@ -286,24 +286,24 @@ void AppParCurves_MultiBSpCurve::D2 (const Standard_Integer CuIndex,
|
||||
|
||||
void AppParCurves_MultiBSpCurve::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "AppParCurves_MultiBSpCurve dump:" << endl;
|
||||
o << " It contains " << NbCurves() << " BSpline curves "<< endl;
|
||||
o << " The poles are: " << endl;
|
||||
o << "AppParCurves_MultiBSpCurve dump:" << std::endl;
|
||||
o << " It contains " << NbCurves() << " BSpline curves "<< std::endl;
|
||||
o << " The poles are: " << std::endl;
|
||||
/* for (Standard_Integer i = 1; i <= NbCurves(); i++) {
|
||||
o << " Curve No. " << i << endl;
|
||||
o << " Curve No. " << i << std::endl;
|
||||
if (Dimension(i) == 3) {
|
||||
for (Standard_Integer j = 1; j <= tabPoint->Length(); j++) {
|
||||
o << " Pole No. " << j << ": " << endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point(i)).X() << endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point(i)).Y() << endl;
|
||||
o << " Pole z = " << (tabPoint->Value(j)->Point(i)).Z() << endl;
|
||||
o << " Pole No. " << j << ": " << std::endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point(i)).X() << std::endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point(i)).Y() << std::endl;
|
||||
o << " Pole z = " << (tabPoint->Value(j)->Point(i)).Z() << std::endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
for (Standard_Integer j = 1; j <= tabPoint->Length(); j++) {
|
||||
o << " Pole No. " << j << ": " << endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point2d(i)).X() << endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point2d(i)).Y() << endl;
|
||||
o << " Pole No. " << j << ": " << std::endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point2d(i)).X() << std::endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point2d(i)).Y() << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -286,24 +286,24 @@ void AppParCurves_MultiCurve::D2 (const Standard_Integer CuIndex,
|
||||
|
||||
void AppParCurves_MultiCurve::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "AppParCurves_MultiCurve dump:" << endl;
|
||||
o << " It contains " << NbCurves() << " Bezier curves of degree " << tabPoint->Length()-1 << endl;
|
||||
o << " The poles are: " << endl;
|
||||
o << "AppParCurves_MultiCurve dump:" << std::endl;
|
||||
o << " It contains " << NbCurves() << " Bezier curves of degree " << tabPoint->Length()-1 << std::endl;
|
||||
o << " The poles are: " << std::endl;
|
||||
/* for (Standard_Integer i = 1; i <= NbCurves(); i++) {
|
||||
o << " Curve No. " << i << endl;
|
||||
o << " Curve No. " << i << std::endl;
|
||||
if (Dimension(i) == 3) {
|
||||
for (Standard_Integer j = 1; j <= tabPoint->Length(); j++) {
|
||||
o << " Pole No. " << j << ": " << endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point(i)).X() << endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point(i)).Y() << endl;
|
||||
o << " Pole z = " << (tabPoint->Value(j)->Point(i)).Z() << endl;
|
||||
o << " Pole No. " << j << ": " << std::endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point(i)).X() << std::endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point(i)).Y() << std::endl;
|
||||
o << " Pole z = " << (tabPoint->Value(j)->Point(i)).Z() << std::endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
for (Standard_Integer j = 1; j <= tabPoint->Length(); j++) {
|
||||
o << " Pole No. " << j << ": " << endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point2d(i)).X() << endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point2d(i)).Y() << endl;
|
||||
o << " Pole No. " << j << ": " << std::endl;
|
||||
o << " Pole x = " << (tabPoint->Value(j)->Point2d(i)).X() << std::endl;
|
||||
o << " Pole y = " << (tabPoint->Value(j)->Point2d(i)).Y() << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -169,20 +169,20 @@ const gp_Pnt2d& AppParCurves_MultiPoint::Point2d (const Standard_Integer Index)
|
||||
|
||||
void AppParCurves_MultiPoint::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "AppParCurves_MultiPoint dump:" << endl;
|
||||
o << "AppParCurves_MultiPoint dump:" << std::endl;
|
||||
const Standard_Integer aNbPnts3D = NbPoints(),
|
||||
aNbPnts2D = NbPoints2d();
|
||||
o << "It contains " << aNbPnts3D << " 3d points and " << aNbPnts2D <<" 2d points." << endl;
|
||||
o << "It contains " << aNbPnts3D << " 3d points and " << aNbPnts2D <<" 2d points." << std::endl;
|
||||
|
||||
if(aNbPnts3D > 0)
|
||||
{
|
||||
for(Standard_Integer i = tabPoint->Lower(); i <= tabPoint->Upper(); i++)
|
||||
{
|
||||
o << "3D-Point #" << i << endl;
|
||||
o << "3D-Point #" << i << std::endl;
|
||||
|
||||
o << " Pole x = " << (tabPoint->Value(i)/*->Point(j)*/).X() << endl;
|
||||
o << " Pole y = " << (tabPoint->Value(i)/*->Point(j)*/).Y() << endl;
|
||||
o << " Pole z = " << (tabPoint->Value(i)/*->Point(j)*/).Z() << endl;
|
||||
o << " Pole x = " << (tabPoint->Value(i)/*->Point(j)*/).X() << std::endl;
|
||||
o << " Pole y = " << (tabPoint->Value(i)/*->Point(j)*/).Y() << std::endl;
|
||||
o << " Pole z = " << (tabPoint->Value(i)/*->Point(j)*/).Z() << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -190,10 +190,10 @@ void AppParCurves_MultiPoint::Dump(Standard_OStream& o) const
|
||||
{
|
||||
for(Standard_Integer i = tabPoint2d->Lower(); i <= tabPoint2d->Upper(); i++)
|
||||
{
|
||||
o << "2D-Point #" << i << endl;
|
||||
o << "2D-Point #" << i << std::endl;
|
||||
|
||||
o << " Pole x = " << (tabPoint2d->Value(i)/*->Point2d(j)*/).X() << endl;
|
||||
o << " Pole y = " << (tabPoint2d->Value(i)/*->Point2d(j)*/).Y() << endl;
|
||||
o << " Pole x = " << (tabPoint2d->Value(i)/*->Point2d(j)*/).X() << std::endl;
|
||||
o << " Pole y = " << (tabPoint2d->Value(i)/*->Point2d(j)*/).Y() << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -64,20 +64,20 @@ static void DUMP(const MultiLine& Line)
|
||||
TColgp_Array1OfPnt tabP(1, mynbP3d);
|
||||
TColgp_Array1OfPnt2d tabP2d(1, mynbP2d);
|
||||
|
||||
cout <<"DUMP de la MultiLine entre "<<firstP <<" et "<<lastP<<": "<<endl;
|
||||
std::cout <<"DUMP de la MultiLine entre "<<firstP <<" et "<<lastP<<": "<<std::endl;
|
||||
for (i = firstP; i <= lastP; i++) {
|
||||
if (nbP3d != 0 && nbP2d != 0) LineTool::Value(Line, i, tabP, tabP2d);
|
||||
else if (nbP2d != 0) LineTool::Value(Line, i, tabP2d);
|
||||
else if (nbP3d != 0) LineTool::Value(Line, i, tabP);
|
||||
|
||||
cout << "point "<<i<<":"<< endl;
|
||||
std::cout << "point "<<i<<":"<< std::endl;
|
||||
for (j = 1; j <= nbP3d; j++) {
|
||||
P1 = tabP(j);
|
||||
cout <<P1.X()<<" "<<P1.Y()<<" "<<P1.Z()<<endl;
|
||||
std::cout <<P1.X()<<" "<<P1.Y()<<" "<<P1.Z()<<std::endl;
|
||||
}
|
||||
for (j = 1; j <= nbP2d; j++) {
|
||||
P12d = tabP2d(j);
|
||||
cout <<P12d.X()<<" "<<P12d.Y()<<endl;
|
||||
std::cout <<P12d.X()<<" "<<P12d.Y()<<std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -197,7 +197,7 @@ static Standard_Boolean CheckMultiCurve(const AppParCurves_MultiCurve& theMultiC
|
||||
if (ScalProd < MinScalProd)
|
||||
{
|
||||
#ifdef DRAW
|
||||
cout<<"ScalProd("<<indp-2<<","<<indp-1<<")-("<<indp-1<<","<<indp<<") = "<<ScalProd<<endl;
|
||||
std::cout<<"ScalProd("<<indp-2<<","<<indp-1<<")-("<<indp-1<<","<<indp<<") = "<<ScalProd<<std::endl;
|
||||
#endif
|
||||
LoopFound = Standard_True;
|
||||
break;
|
||||
@ -329,7 +329,7 @@ static Standard_Boolean CheckMultiCurve(const AppParCurves_MultiCurve& theMultiC
|
||||
if (ScalProd < MinScalProd)
|
||||
{
|
||||
#ifdef DRAW
|
||||
cout<<"ScalProd("<<k-2<<","<<k-1<<")-("<<k-1<<","<<k<<") = "<<ScalProd<<endl;
|
||||
std::cout<<"ScalProd("<<k-2<<","<<k-1<<")-("<<k-1<<","<<k<<") = "<<ScalProd<<std::endl;
|
||||
#endif
|
||||
LoopFound = Standard_True;
|
||||
break;
|
||||
@ -1486,7 +1486,7 @@ Standard_Boolean Approx_ComputeLine::ComputeCurve(const MultiLine& Line,
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if (!Parallel) {
|
||||
if (mydebug) cout <<"droite mais tangentes pas vraiment paralleles!!"<< endl;
|
||||
if (mydebug) std::cout <<"droite mais tangentes pas vraiment paralleles!!"<< std::endl;
|
||||
}
|
||||
#endif
|
||||
AppParCurves_MultiCurve mySCU(mydegremin+1);
|
||||
|
@ -174,8 +174,8 @@ Approx_Curve3d::Approx_Curve3d(const Handle(Adaptor3d_HCurve)& Curve,
|
||||
|
||||
void Approx_Curve3d::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "******* Dump of ApproxCurve *******" << endl;
|
||||
o << "*******Degree " << Curve()->Degree() << endl;
|
||||
o << "*******NbSegments " << Curve()->NbKnots() - 1 << endl;
|
||||
o << "*******Error " << MaxError() << endl;
|
||||
o << "******* Dump of ApproxCurve *******" << std::endl;
|
||||
o << "*******Degree " << Curve()->Degree() << std::endl;
|
||||
o << "*******NbSegments " << Curve()->NbKnots() - 1 << std::endl;
|
||||
o << "*******Error " << MaxError() << std::endl;
|
||||
}
|
||||
|
@ -197,11 +197,11 @@ Approx_CurvilinearParameter::Approx_CurvilinearParameter(const Handle(Adaptor3d_
|
||||
#ifdef OCCT_DEBUG_CHRONO
|
||||
ResultChron(chr_total, t_total);
|
||||
|
||||
cout<<" total reparametrization time = "<<t_total<<endl;
|
||||
cout<<"initialization time = "<<t_init<<endl;
|
||||
cout<<"approximation time = "<<t_approx<<endl;
|
||||
cout<<"total time for uparam computation = "<<t_uparam<<endl;
|
||||
cout<<"number uparam calles = "<<uparam_count<<endl;
|
||||
std::cout<<" total reparametrization time = "<<t_total<<std::endl;
|
||||
std::cout<<"initialization time = "<<t_init<<std::endl;
|
||||
std::cout<<"approximation time = "<<t_approx<<std::endl;
|
||||
std::cout<<"total time for uparam computation = "<<t_uparam<<std::endl;
|
||||
std::cout<<"number uparam calles = "<<uparam_count<<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -358,11 +358,11 @@ Approx_CurvilinearParameter::Approx_CurvilinearParameter(const Handle(Adaptor2d_
|
||||
#ifdef OCCT_DEBUG_CHRONO
|
||||
ResultChron(chr_total, t_total);
|
||||
|
||||
cout<<" total reparametrization time = "<<t_total<<endl;
|
||||
cout<<"initialization time = "<<t_init<<endl;
|
||||
cout<<"approximation time = "<<t_approx<<endl;
|
||||
cout<<"total time for uparam computation = "<<t_uparam<<endl;
|
||||
cout<<"number uparam calles = "<<uparam_count<<endl;
|
||||
std::cout<<" total reparametrization time = "<<t_total<<std::endl;
|
||||
std::cout<<"initialization time = "<<t_init<<std::endl;
|
||||
std::cout<<"approximation time = "<<t_approx<<std::endl;
|
||||
std::cout<<"total time for uparam computation = "<<t_uparam<<std::endl;
|
||||
std::cout<<"number uparam calles = "<<uparam_count<<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -531,11 +531,11 @@ Approx_CurvilinearParameter::Approx_CurvilinearParameter(const Handle(Adaptor2d_
|
||||
#ifdef OCCT_DEBUG_CHRONO
|
||||
ResultChron(chr_total, t_total);
|
||||
|
||||
cout<<" total reparametrization time = "<<t_total<<endl;
|
||||
cout<<"initialization time = "<<t_init<<endl;
|
||||
cout<<"approximation time = "<<t_approx<<endl;
|
||||
cout<<"total time for uparam computation = "<<t_uparam<<endl;
|
||||
cout<<"number uparam calles = "<<uparam_count<<endl;
|
||||
std::cout<<" total reparametrization time = "<<t_total<<std::endl;
|
||||
std::cout<<"initialization time = "<<t_init<<std::endl;
|
||||
std::cout<<"approximation time = "<<t_approx<<std::endl;
|
||||
std::cout<<"total time for uparam computation = "<<t_uparam<<std::endl;
|
||||
std::cout<<"number uparam calles = "<<uparam_count<<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -628,12 +628,12 @@ Approx_CurvilinearParameter::Approx_CurvilinearParameter(const Handle(Adaptor2d_
|
||||
|
||||
void Approx_CurvilinearParameter::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "Dump of Approx_CurvilinearParameter" << endl;
|
||||
o << "Dump of Approx_CurvilinearParameter" << std::endl;
|
||||
if (myCase==2 || myCase==3)
|
||||
o << "myMaxError2d1 = " << myMaxError2d1 << endl;
|
||||
o << "myMaxError2d1 = " << myMaxError2d1 << std::endl;
|
||||
if (myCase==3)
|
||||
o << "myMaxError2d2 = " << myMaxError2d2 << endl;
|
||||
o << "myMaxError3d = " << myMaxError3d << endl;
|
||||
o << "myMaxError2d2 = " << myMaxError2d2 << std::endl;
|
||||
o << "myMaxError3d = " << myMaxError3d << std::endl;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -665,7 +665,7 @@ void Approx_CurvilinearParameter::ToleranceComputation(const Handle(Adaptor2d_HC
|
||||
TolW = Tol / (4.*Max_dS_dw);
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "TolV = " << TolV << endl;
|
||||
cout << "TolW = " << TolW << endl;
|
||||
std::cout << "TolV = " << TolV << std::endl;
|
||||
std::cout << "TolW = " << TolW << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
@ -36,17 +36,17 @@ static void DEBUG(const AppParCurves_MultiCurve& MC) {
|
||||
TColgp_Array1OfPnt2d Poles2d(1, nbpoles);
|
||||
|
||||
for (i = 1; i <= nbcu; i++) {
|
||||
cout << " Curve No. " << i << endl;
|
||||
std::cout << " Curve No. " << i << std::endl;
|
||||
if (MC.Dimension(i) == 3) {
|
||||
MC.Curve(i, Poles);
|
||||
for (j = 1; j <= nbpoles; j++) {
|
||||
cout<< " Pole = " << Poles(j).X() <<" "<<Poles(j).Y()<<" "<<Poles(j).Z()<< endl;
|
||||
std::cout<< " Pole = " << Poles(j).X() <<" "<<Poles(j).Y()<<" "<<Poles(j).Z()<< std::endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
MC.Curve(i, Poles2d);
|
||||
for (j = 1; j <= nbpoles; j++) {
|
||||
cout<< " Pole = " << Poles2d(j).X() <<" "<<Poles2d(j).Y()<< endl;
|
||||
std::cout<< " Pole = " << Poles2d(j).X() <<" "<<Poles2d(j).Y()<< std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -542,7 +542,7 @@ void Approx_SameParameter::Build(const Standard_Real Tolerance)
|
||||
{
|
||||
//Projector
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Projection not done" << endl;
|
||||
std::cout << "Projection not done" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -558,7 +558,7 @@ void Approx_SameParameter::Build(const Standard_Real Tolerance)
|
||||
// If not already SameP and tangent to mill, abandon.
|
||||
mySameParameter = Standard_False;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"SameParameter problem : zero tangent to extremities"<<endl;
|
||||
std::cout<<"SameParameter problem : zero tangent to extremities"<<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@ -653,7 +653,7 @@ void Approx_SameParameter::Build(const Standard_Real Tolerance)
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Projection not done" << endl;
|
||||
std::cout << "Projection not done" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -687,7 +687,7 @@ void Approx_SameParameter::Build(const Standard_Real Tolerance)
|
||||
if (Precision::IsInfinite(algtol)) {
|
||||
mySameParameter = Standard_False;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"SameParameter problem : function of interpolation of parametration at mills !!"<<endl;
|
||||
std::cout<<"SameParameter problem : function of interpolation of parametration at mills !!"<<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@ -778,7 +778,7 @@ void Approx_SameParameter::Build(const Standard_Real Tolerance)
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Projection not done" << endl;
|
||||
std::cout << "Projection not done" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -737,19 +737,19 @@ Standard_Real Approx_SweepApproximation::TolCurveOnSurf(const Standard_Integer I
|
||||
|
||||
void Approx_SweepApproximation::Dump(Standard_OStream& o) const
|
||||
{
|
||||
o << "Dump of SweepApproximation" << endl;
|
||||
o << "Dump of SweepApproximation" << std::endl;
|
||||
if (done) {
|
||||
o << "Error 3d = " << MaxErrorOnSurf() << endl;
|
||||
o << "Error 3d = " << MaxErrorOnSurf() << std::endl;
|
||||
|
||||
if (Num2DSS>0) {
|
||||
o << "Error 2d = ";
|
||||
for (Standard_Integer ii=1; ii<=Num2DSS; ii++)
|
||||
{ o << Max2dError(ii);
|
||||
if (ii < Num2DSS) o << " , " << endl;
|
||||
if (ii < Num2DSS) o << " , " << std::endl;
|
||||
}
|
||||
cout << endl;
|
||||
std::cout << std::endl;
|
||||
}
|
||||
o << tabVKnots->Length()-1 <<" Segment(s) of degree " << vdeg << endl;
|
||||
o << tabVKnots->Length()-1 <<" Segment(s) of degree " << vdeg << std::endl;
|
||||
}
|
||||
else cout << " Not Done " << endl;
|
||||
else std::cout << " Not Done " << std::endl;
|
||||
}
|
||||
|
@ -170,10 +170,10 @@ void ApproxInt_KnotTools::ComputeKnotInds(const NCollection_LocalArray<Standard_
|
||||
}
|
||||
|
||||
#ifdef APPROXINT_KNOTTOOLS_DEBUG
|
||||
cout << "Discrete curvature array is" << endl;
|
||||
std::cout << "Discrete curvature array is" << std::endl;
|
||||
for(i = aCurv.Lower(); i <= aCurv.Upper(); ++i)
|
||||
{
|
||||
cout << i << " " << aCurv(i) << endl;
|
||||
std::cout << i << " " << aCurv(i) << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -219,11 +219,11 @@ void ApproxInt_KnotTools::ComputeKnotInds(const NCollection_LocalArray<Standard_
|
||||
|
||||
#if defined(APPROXINT_KNOTTOOLS_DEBUG)
|
||||
{
|
||||
cout << "Feature indices new: " << endl;
|
||||
std::cout << "Feature indices new: " << std::endl;
|
||||
i;
|
||||
for(i = theInds.Lower(); i <= theInds.Upper(); ++i)
|
||||
{
|
||||
cout << i << " : " << theInds(i) << endl;
|
||||
std::cout << i << " : " << theInds(i) << std::endl;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -608,10 +608,10 @@ void ApproxInt_KnotTools::BuildKnots(const TColgp_Array1OfPnt& thePntsXYZ,
|
||||
ComputeKnotInds(aCoords, aDim, thePars, aKnots);
|
||||
|
||||
#if defined(APPROXINT_KNOTTOOLS_DEBUG)
|
||||
cout << "Draft knot sequence: " << endl;
|
||||
std::cout << "Draft knot sequence: " << std::endl;
|
||||
for(i = aKnots.Lower(); i <= aKnots.Upper(); ++i)
|
||||
{
|
||||
cout << i << " : " << aKnots(i) << endl;
|
||||
std::cout << i << " : " << aKnots(i) << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -619,10 +619,10 @@ void ApproxInt_KnotTools::BuildKnots(const TColgp_Array1OfPnt& thePntsXYZ,
|
||||
FilterKnots(aKnots, theMinNbPnts, theKnots);
|
||||
|
||||
#if defined(APPROXINT_KNOTTOOLS_DEBUG)
|
||||
cout << "Result knot sequence: " << endl;
|
||||
std::cout << "Result knot sequence: " << std::endl;
|
||||
for(i = theKnots.Lower(); i <= theKnots.Upper(); ++i)
|
||||
{
|
||||
cout << i << " : " << theKnots(i) << endl;
|
||||
std::cout << i << " : " << theKnots(i) << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include <math_FunctionSetRoot.hxx>
|
||||
#include <Precision.hxx>
|
||||
|
||||
#define Debug(expr) cout<<" expr :"<<expr;
|
||||
#define Debug(expr) std::cout<<" expr :"<<expr;
|
||||
#define MySurf1 MyIntersectionOn2S.Function().AuxillarSurface1()
|
||||
#define MySurf2 MyIntersectionOn2S.Function().AuxillarSurface2()
|
||||
|
||||
|
@ -255,9 +255,8 @@ Standard_Integer bopcheck (Draw_Interpretor& di,
|
||||
//
|
||||
const BOPDS_MapOfPair& aMPK=aDS.Interferences();
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
using namespace std;
|
||||
vector <BOPTest_Interf> aVec;
|
||||
vector <BOPTest_Interf>::iterator aIt;
|
||||
std::vector <BOPTest_Interf> aVec;
|
||||
std::vector <BOPTest_Interf>::iterator aIt;
|
||||
BOPTest_Interf aBInterf;
|
||||
//
|
||||
aItMPK.Initialize(aMPK);
|
||||
@ -281,7 +280,7 @@ Standard_Integer bopcheck (Draw_Interpretor& di,
|
||||
aVec.push_back(aBInterf);
|
||||
}
|
||||
//
|
||||
sort( aVec.begin(), aVec.end(), less<BOPTest_Interf>());
|
||||
sort( aVec.begin(), aVec.end(), std::less<BOPTest_Interf>());
|
||||
//
|
||||
iCnt=0;
|
||||
for (aIt=aVec.begin(); aIt!=aVec.end(); aIt++) {
|
||||
|
@ -988,7 +988,7 @@ Standard_Boolean BOPTools_AlgoTools::GetFaceOff
|
||||
aDN1, aDBF, theContext, aProjPL, aDt3D);
|
||||
if (!bIsComputed) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BOPTools_AlgoTools::GetFaceOff(): incorrect computation of bi-normal direction." << endl;
|
||||
std::cout << "BOPTools_AlgoTools::GetFaceOff(): incorrect computation of bi-normal direction." << std::endl;
|
||||
#endif
|
||||
}
|
||||
//
|
||||
@ -1006,7 +1006,7 @@ Standard_Boolean BOPTools_AlgoTools::GetFaceOff
|
||||
aDBF2, theContext, aProjPL, aDt3D);
|
||||
if (!bIsComputed) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BOPTools_AlgoTools::GetFaceOff(): incorrect computation of bi-normal direction." << endl;
|
||||
std::cout << "BOPTools_AlgoTools::GetFaceOff(): incorrect computation of bi-normal direction." << std::endl;
|
||||
#endif
|
||||
}
|
||||
//Angle
|
||||
|
@ -149,7 +149,7 @@ BRepAlgo_BooleanOperation::~BRepAlgo_BooleanOperation()
|
||||
}
|
||||
myBuilderCanWork = (esp || tede) ;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (!esp) cout<<"BRepAlgo_BooleanOperation(DEB) some edges not SameParameter"<<endl;
|
||||
if (!esp) std::cout<<"BRepAlgo_BooleanOperation(DEB) some edges not SameParameter"<<std::endl;
|
||||
#endif
|
||||
if (!myBuilderCanWork) return;
|
||||
|
||||
@ -241,8 +241,8 @@ BRepAlgo_BooleanOperation::~BRepAlgo_BooleanOperation()
|
||||
Vertex2.Append(Ex.Current()); nbv2++;
|
||||
}
|
||||
|
||||
//-- cout<<"Solids1: "<<nbs1<<" Faces1: "<<nbf1<<" Edges1:"<<nbe1<<" Vtx1:"<<nbv1<<endl;
|
||||
//-- cout<<"Solids2: "<<nbs2<<" Faces2: "<<nbf2<<" Edges2:"<<nbe2<<" Vtx2:"<<nbv2<<endl;
|
||||
//-- std::cout<<"Solids1: "<<nbs1<<" Faces1: "<<nbf1<<" Edges1:"<<nbe1<<" Vtx1:"<<nbv1<<std::endl;
|
||||
//-- std::cout<<"Solids2: "<<nbs2<<" Faces2: "<<nbf2<<" Edges2:"<<nbe2<<" Vtx2:"<<nbv2<<std::endl;
|
||||
|
||||
//==
|
||||
|
||||
@ -253,14 +253,14 @@ BRepAlgo_BooleanOperation::~BRepAlgo_BooleanOperation()
|
||||
// Standard_Boolean Correct = Standard_True;
|
||||
if( (nbs1 && nbs2==0 && St1==TopAbs_OUT && St2==TopAbs_IN)
|
||||
|| (nbs2 && nbs1==0 && St2==TopAbs_OUT && St1==TopAbs_IN)) {
|
||||
//-- cout<<"***** Invalid Operation : Cut of a Solid by a Non Solid "<<endl;
|
||||
//-- std::cout<<"***** Invalid Operation : Cut of a Solid by a Non Solid "<<std::endl;
|
||||
Done();
|
||||
return;
|
||||
}
|
||||
|
||||
if( (nbs1 && nbs2==0 && St1==TopAbs_OUT && St2==TopAbs_OUT)
|
||||
|| (nbs2 && nbs1==0 && St2==TopAbs_OUT && St1==TopAbs_OUT)) {
|
||||
//-- cout<<"***** Invalid Operation : Fusion of a Solid and a Non Solid "<<endl;
|
||||
//-- std::cout<<"***** Invalid Operation : Fusion of a Solid and a Non Solid "<<std::endl;
|
||||
Done();
|
||||
return;
|
||||
}
|
||||
@ -268,7 +268,7 @@ BRepAlgo_BooleanOperation::~BRepAlgo_BooleanOperation()
|
||||
|
||||
if( (nbs1>0 && nbs2>0)
|
||||
&& (nbe1 || nbe2 || nbf1 || nbf2 || nbv1 || nbv2)) {
|
||||
//-- cout<<"***** Not Yet Implemented : Compound of solid and non Solid"<<endl;
|
||||
//-- std::cout<<"***** Not Yet Implemented : Compound of solid and non Solid"<<std::endl;
|
||||
Done();
|
||||
return;
|
||||
}
|
||||
|
@ -198,7 +198,7 @@ static TopoDS_Vertex UpdateClosedEdge(const TopoDS_Edge& E,
|
||||
if (!VB[0].IsSame(VB[1])) {
|
||||
#ifdef OCCT_DEBUG_ALGO
|
||||
if (AffichLoop)
|
||||
cout <<"Two different vertices on the closing vertex"<<endl;
|
||||
std::cout <<"Two different vertices on the closing vertex"<<std::endl;
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
@ -314,7 +314,7 @@ static Standard_Boolean SelectEdge(const TopoDS_Face& F,
|
||||
#ifdef OCCT_DEBUG_ALGO
|
||||
if (AffichLoop) {
|
||||
if ( LE.Extent() > 2) {
|
||||
cout <<"vertex on more than 2 edges in a face."<<endl;
|
||||
std::cout <<"vertex on more than 2 edges in a face."<<std::endl;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -512,7 +512,7 @@ void BRepAlgo_Loop::Perform()
|
||||
|
||||
#ifdef OCCT_DEBUG_ALGO
|
||||
if (AffichLoop) {
|
||||
cout <<"NewLoop"<<endl;
|
||||
std::cout <<"NewLoop"<<std::endl;
|
||||
NbLoops++;
|
||||
#ifdef DRAW
|
||||
sprintf(name,"FLoop_%d",NbLoops);
|
||||
@ -582,7 +582,7 @@ void BRepAlgo_Loop::Perform()
|
||||
|
||||
#ifdef DRAW
|
||||
if (AffichLoop) {
|
||||
cout <<"NewLoop"<<endl;
|
||||
std::cout <<"NewLoop"<<std::endl;
|
||||
Standard_Integer NbEdges = 1;
|
||||
TopTools_MapOfShape Done;
|
||||
for (Standard_Integer iV = 1; iV <= MVE.Extent(); iV++) {
|
||||
@ -685,9 +685,9 @@ void BRepAlgo_Loop::Perform()
|
||||
}
|
||||
#ifdef OCCT_DEBUG_ALGO
|
||||
else {
|
||||
cout <<"BRepAlgo_Loop: Open Wire"<<endl;
|
||||
std::cout <<"BRepAlgo_Loop: Open Wire"<<std::endl;
|
||||
if (AffichLoop)
|
||||
cout << "OpenWire is : NW_"<<NbLoops<<"_"<<NbWires<<endl;
|
||||
std::cout << "OpenWire is : NW_"<<NbLoops<<"_"<<NbWires<<std::endl;
|
||||
}
|
||||
#endif
|
||||
#ifdef DRAW
|
||||
|
@ -292,8 +292,8 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
for(k = 1; k <= Projector.NbCurves(); k++){
|
||||
if(Projector.IsSinglePnt(k, P2d)){
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
cout << " is punctual"<<endl<<endl;
|
||||
std::cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
std::cout << " is punctual"<<std::endl<<std::endl;
|
||||
#endif
|
||||
Projector.GetSurface()->D0(P2d.X(), P2d.Y(), P);
|
||||
prj = BRepLib_MakeVertex(P).Shape();
|
||||
@ -310,8 +310,8 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
/**************************************************************/
|
||||
if (Projector.IsUIso(k, UIso)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
cout << " is U-isoparametric"<<endl<<endl;
|
||||
std::cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
std::cout << " is U-isoparametric"<<std::endl<<std::endl;
|
||||
#endif
|
||||
Projector.D0(Udeb, Pdeb);
|
||||
Projector.D0(Ufin, Pfin);
|
||||
@ -327,8 +327,8 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
}
|
||||
else if (Projector.IsVIso(k, VIso)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
cout << " is V-isoparametric"<<endl<<endl;
|
||||
std::cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
std::cout << " is V-isoparametric"<<std::endl<<std::endl;
|
||||
#endif
|
||||
Projector.D0(Udeb, Pdeb);
|
||||
Projector.D0(Ufin, Pfin);
|
||||
@ -370,12 +370,12 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
ResultChron(chr_approx,t_approx);
|
||||
approx_count++;
|
||||
|
||||
cout<<"Approximation.IsDone = "<<appr.IsDone()<<endl;
|
||||
std::cout<<"Approximation.IsDone = "<<appr.IsDone()<<std::endl;
|
||||
if(!Only2d)
|
||||
cout<<"MaxError3d = "<<appr.MaxError3d()<<endl<<endl;
|
||||
std::cout<<"MaxError3d = "<<appr.MaxError3d()<<std::endl<<std::endl;
|
||||
if(!Only3d) {
|
||||
cout<<"MaxError2dU = "<<appr.MaxError2dU()<<endl;
|
||||
cout<<"MaxError2dV = "<<appr.MaxError2dV()<<endl<<endl;
|
||||
std::cout<<"MaxError2dU = "<<appr.MaxError2dU()<<std::endl;
|
||||
std::cout<<"MaxError2dV = "<<appr.MaxError2dV()<<std::endl<<std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -440,8 +440,8 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
}
|
||||
if (Degenerated) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
cout << " is degenerated "<<endl<<endl;
|
||||
std::cout << "Projection of edge "<<i<<" on face "<<j;
|
||||
std::cout << " is degenerated "<<std::endl<<std::endl;
|
||||
#endif
|
||||
TopoDS_Vertex VV;
|
||||
BB.MakeVertex(VV);
|
||||
@ -511,7 +511,7 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " BooleanOperations : no solution " << endl;
|
||||
std::cout << " BooleanOperations : no solution " << std::endl;
|
||||
#endif
|
||||
|
||||
BRepTopAdaptor_FClass2d classifier(TopoDS::Face(Faces->Value(j)),
|
||||
@ -557,13 +557,13 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
#ifdef OCCT_DEBUG_CHRONO
|
||||
ResultChron(chr_total,t_total);
|
||||
|
||||
cout<<"Build - Total time : "<<t_total<<" includes:" <<endl;
|
||||
cout<<"- Projection : "<<t_init<<endl;
|
||||
cout<<" -- Initial point search : "<<t_init_point<<endl;
|
||||
cout<<" -- DichoBound search : "<<t_dicho_bound<<endl;
|
||||
cout<<"- Approximation : "<<t_approx<<endl;
|
||||
cout<<"- Boolean operation : "<<t_booltool<<endl;
|
||||
cout<<"- Rest of time : "<<t_total-(t_init + t_approx + t_booltool )<<endl<<endl;
|
||||
std::cout<<"Build - Total time : "<<t_total<<" includes:" <<std::endl;
|
||||
std::cout<<"- Projection : "<<t_init<<std::endl;
|
||||
std::cout<<" -- Initial point search : "<<t_init_point<<std::endl;
|
||||
std::cout<<" -- DichoBound search : "<<t_dicho_bound<<std::endl;
|
||||
std::cout<<"- Approximation : "<<t_approx<<std::endl;
|
||||
std::cout<<"- Boolean operation : "<<t_booltool<<std::endl;
|
||||
std::cout<<"- Rest of time : "<<t_total-(t_init + t_approx + t_booltool )<<std::endl<<std::endl;
|
||||
if (init_count != 0)
|
||||
t_init /= init_count;
|
||||
if (init_point_count != 0)
|
||||
@ -575,13 +575,13 @@ void BRepAlgo_NormalProjection::SetDefaultParams()
|
||||
if (booltool_count != 0)
|
||||
t_booltool /= booltool_count;
|
||||
|
||||
cout<<"Unitary average time : "<<endl;
|
||||
cout<<"- Projection : "<<t_init<<endl;
|
||||
cout<<" -- Initial point search: "<<t_init_point<<endl;
|
||||
cout<<" -- DichoBound search : "<<t_dicho_bound<<endl;
|
||||
cout<<"- Approximation : "<<t_approx<<endl;
|
||||
cout<<"- Boolean operation :"<<t_booltool<<endl;
|
||||
cout<<endl<<"Number of initial point computations is "<<init_point_count<<endl<<endl;
|
||||
std::cout<<"Unitary average time : "<<std::endl;
|
||||
std::cout<<"- Projection : "<<t_init<<std::endl;
|
||||
std::cout<<" -- Initial point search: "<<t_init_point<<std::endl;
|
||||
std::cout<<" -- DichoBound search : "<<t_dicho_bound<<std::endl;
|
||||
std::cout<<"- Approximation : "<<t_approx<<std::endl;
|
||||
std::cout<<"- Boolean operation :"<<t_booltool<<std::endl;
|
||||
std::cout<<std::endl<<"Number of initial point computations is "<<init_point_count<<std::endl<<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -91,7 +91,7 @@ TopoDS_Shape BRepAlgo_Tool::Deboucle3D(const TopoDS_Shape& S,
|
||||
if (NbSub == 0)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "No subhape in shape!" << endl;
|
||||
std::cout << "No subhape in shape!" << std::endl;
|
||||
#endif
|
||||
SS = TopoDS_Shape();
|
||||
}
|
||||
|
@ -331,7 +331,7 @@ Standard_Boolean BRepBlend_AppFuncRoot::SearchPoint(Blend_AppFunction& Func,
|
||||
|
||||
if (!rsnld.IsDone()) {
|
||||
# ifdef BREPBLEND_DEB
|
||||
cout << "AppFunc : RNLD Not done en t = " << Param << endl;
|
||||
std::cout << "AppFunc : RNLD Not done en t = " << Param << std::endl;
|
||||
# endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -343,8 +343,8 @@ Standard_Boolean BRepBlend_AppFuncRoot::SearchPoint(Blend_AppFunction& Func,
|
||||
// (4) Insertion of the point if the calculation seems long.
|
||||
if ((!Trouve)&&(rsnld.NbIterations()>3)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Evaluation in t = " << Param << "given" << endl;
|
||||
rsnld.Dump(cout);
|
||||
std::cout << "Evaluation in t = " << Param << "given" << std::endl;
|
||||
rsnld.Dump(std::cout);
|
||||
#endif
|
||||
myLine->InsertBefore(Index+1, Pnt);
|
||||
}
|
||||
|
@ -101,28 +101,28 @@ static void tracederiv(Blend_RstRstFunction& Func,
|
||||
Standard_Real param2 = BP2.Parameter();
|
||||
Standard_Real scal = 1./ (param1 - param2);
|
||||
|
||||
cout<<endl;
|
||||
cout<<"control of derivatives at point : "<<param1<<endl;
|
||||
std::cout<<std::endl;
|
||||
std::cout<<"control of derivatives at point : "<<param1<<std::endl;
|
||||
|
||||
for(i = 1; i <= hp; i++){
|
||||
cout<<endl;
|
||||
cout<<"point : "<<i<<endl;
|
||||
cout<<"dx calculated : "<<TDP1(i).X()<<endl;
|
||||
cout<<"dx estimated : "<<scal*(TP1(i).X()-TP2(i).X())<<endl;
|
||||
cout<<"dy calculated : "<<TDP1(i).Y()<<endl;
|
||||
cout<<"dy estimated : "<<scal*(TP1(i).Y()-TP2(i).Y())<<endl;
|
||||
cout<<"dz calculated : "<<TDP1(i).Z()<<endl;
|
||||
cout<<"dz estimated : "<<scal*(TP1(i).Z()-TP2(i).Z())<<endl;
|
||||
cout<<"dw calculated : "<<TDW1(i)<<endl;
|
||||
cout<<"dw estimated : "<<scal*(TW1(i)-TW2(i))<<endl;
|
||||
std::cout<<std::endl;
|
||||
std::cout<<"point : "<<i<<std::endl;
|
||||
std::cout<<"dx calculated : "<<TDP1(i).X()<<std::endl;
|
||||
std::cout<<"dx estimated : "<<scal*(TP1(i).X()-TP2(i).X())<<std::endl;
|
||||
std::cout<<"dy calculated : "<<TDP1(i).Y()<<std::endl;
|
||||
std::cout<<"dy estimated : "<<scal*(TP1(i).Y()-TP2(i).Y())<<std::endl;
|
||||
std::cout<<"dz calculated : "<<TDP1(i).Z()<<std::endl;
|
||||
std::cout<<"dz estimated : "<<scal*(TP1(i).Z()-TP2(i).Z())<<std::endl;
|
||||
std::cout<<"dw calculated : "<<TDW1(i)<<std::endl;
|
||||
std::cout<<"dw estimated : "<<scal*(TW1(i)-TW2(i))<<std::endl;
|
||||
}
|
||||
for(i = 1; i <= hp2d; i++){
|
||||
cout<<endl;
|
||||
cout<<"point 2d : "<<i<<endl;
|
||||
cout<<"dx calculated : "<<TDP2d1(i).X()<<endl;
|
||||
cout<<"dx estimated : "<<scal*(TP2d1(i).X()-TP2d2(i).X())<<endl;
|
||||
cout<<"dy calculated : "<<TDP2d1(i).Y()<<endl;
|
||||
cout<<"dy estimated : "<<scal*(TP2d1(i).Y()-TP2d2(i).Y())<<endl;
|
||||
std::cout<<std::endl;
|
||||
std::cout<<"point 2d : "<<i<<std::endl;
|
||||
std::cout<<"dx calculated : "<<TDP2d1(i).X()<<std::endl;
|
||||
std::cout<<"dx estimated : "<<scal*(TP2d1(i).X()-TP2d2(i).X())<<std::endl;
|
||||
std::cout<<"dy calculated : "<<TDP2d1(i).Y()<<std::endl;
|
||||
std::cout<<"dy estimated : "<<scal*(TP2d1(i).Y()-TP2d2(i).Y())<<std::endl;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -825,7 +825,7 @@ void BRepBlend_RstRstLineBuilder::InternalPerform(Blend_RstRstFunction& Func,
|
||||
else{
|
||||
// reframing failed. Leave with PointsConfondus
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"reframing failed"<<endl;
|
||||
std::cout<<"reframing failed"<<std::endl;
|
||||
#endif
|
||||
State = Blend_SamePoints;
|
||||
}
|
||||
@ -880,7 +880,7 @@ void BRepBlend_RstRstLineBuilder::InternalPerform(Blend_RstRstFunction& Func,
|
||||
#ifdef OCCT_DEBUG
|
||||
if (line->NbPoints()>=2) {
|
||||
// Show that there is a stop during processing
|
||||
cout<<"No more advancement in the processing"<<endl;
|
||||
std::cout<<"No more advancement in the processing"<<std::endl;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@ -988,7 +988,7 @@ void BRepBlend_RstRstLineBuilder::InternalPerform(Blend_RstRstFunction& Func,
|
||||
{
|
||||
// Stop
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " Mixed points in the processing" << endl;
|
||||
std::cout << " Mixed points in the processing" << std::endl;
|
||||
#endif
|
||||
Extrst1.SetValue(previousP.PointOnC1(),
|
||||
previousP.ParameterOnC1(),
|
||||
@ -1039,7 +1039,7 @@ Standard_Boolean BRepBlend_RstRstLineBuilder::Recadre1(Blend_RstRstFunction&
|
||||
rsnld.Perform(Finv, Solinv, infb, supb);
|
||||
if (!rsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "RSNLD not done "<< endl << endl;
|
||||
std::cout << "RSNLD not done "<< std::endl << std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -1121,7 +1121,7 @@ Standard_Boolean BRepBlend_RstRstLineBuilder::Recadre2(Blend_RstRstFunction&
|
||||
rsnld.Perform(Finv, Solinv, infb, supb);
|
||||
if (!rsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "RSNLD not done "<< endl << endl;
|
||||
std::cout << "RSNLD not done "<< std::endl << std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -1207,7 +1207,7 @@ Standard_Boolean BRepBlend_RstRstLineBuilder::Recadre1(Blend_CurvPointFuncInv&
|
||||
rsnld.Perform(FinvP, Solinv, infb, supb);
|
||||
if (!rsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "RSNLD not done "<< endl << endl;
|
||||
std::cout << "RSNLD not done "<< std::endl << std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -1275,7 +1275,7 @@ Standard_Boolean BRepBlend_RstRstLineBuilder::Recadre2(Blend_CurvPointFuncInv&
|
||||
rsnld.Perform(FinvP, Solinv, infb, supb);
|
||||
if (!rsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "RSNLD not done "<< endl << endl;
|
||||
std::cout << "RSNLD not done "<< std::endl << std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
|
@ -921,7 +921,7 @@ Standard_Boolean BRepBlend_SurfRstConstRad::Section
|
||||
if (norm < Eps) {
|
||||
norm = 1; // Not enough, but it is not necessary to stop
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " SurfRstConstRad : Singular Surface " << endl;
|
||||
std::cout << " SurfRstConstRad : Singular Surface " << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -934,7 +934,7 @@ TColStd_Array1OfReal& DWeigths)
|
||||
if (norm < Eps) {
|
||||
norm = 1; // Not enough, but it is not necessary to stop
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " SurfRstEvolRad : Surface single " << endl;
|
||||
std::cout << " SurfRstEvolRad : Surface single " << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -96,28 +96,28 @@ static void tracederiv(Blend_SurfRstFunction& Func,
|
||||
Standard_Real param2 = BP2.Parameter();
|
||||
Standard_Real scal = 1./(param1-param2);
|
||||
|
||||
cout<<endl;
|
||||
cout<<"control derivatives at point : "<<param1<<endl;
|
||||
std::cout<<std::endl;
|
||||
std::cout<<"control derivatives at point : "<<param1<<std::endl;
|
||||
|
||||
for(i = 1; i <= hp; i++){
|
||||
cout<<endl;
|
||||
cout<<"point : "<<i<<endl;
|
||||
cout<<"dx calculated : "<<TDP1(i).X()<<endl;
|
||||
cout<<"dx estimated : "<<scal*(TP1(i).X()-TP2(i).X())<<endl;
|
||||
cout<<"dy calculated : "<<TDP1(i).Y()<<endl;
|
||||
cout<<"dy estimated : "<<scal*(TP1(i).Y()-TP2(i).Y())<<endl;
|
||||
cout<<"dz calculated : "<<TDP1(i).Z()<<endl;
|
||||
cout<<"dz estimated : "<<scal*(TP1(i).Z()-TP2(i).Z())<<endl;
|
||||
cout<<"dw calculated : "<<TDW1(i)<<endl;
|
||||
cout<<"dw estimated : "<<scal*(TW1(i)-TW2(i))<<endl;
|
||||
std::cout<<std::endl;
|
||||
std::cout<<"point : "<<i<<std::endl;
|
||||
std::cout<<"dx calculated : "<<TDP1(i).X()<<std::endl;
|
||||
std::cout<<"dx estimated : "<<scal*(TP1(i).X()-TP2(i).X())<<std::endl;
|
||||
std::cout<<"dy calculated : "<<TDP1(i).Y()<<std::endl;
|
||||
std::cout<<"dy estimated : "<<scal*(TP1(i).Y()-TP2(i).Y())<<std::endl;
|
||||
std::cout<<"dz calculated : "<<TDP1(i).Z()<<std::endl;
|
||||
std::cout<<"dz estimated : "<<scal*(TP1(i).Z()-TP2(i).Z())<<std::endl;
|
||||
std::cout<<"dw calculated : "<<TDW1(i)<<std::endl;
|
||||
std::cout<<"dw estimated : "<<scal*(TW1(i)-TW2(i))<<std::endl;
|
||||
}
|
||||
for(i = 1; i <= hp2d; i++){
|
||||
cout<<endl;
|
||||
cout<<"point 2d : "<<i<<endl;
|
||||
cout<<"dx calculated : "<<TDP2d1(i).X()<<endl;
|
||||
cout<<"dx estimated : "<<scal*(TP2d1(i).X()-TP2d2(i).X())<<endl;
|
||||
cout<<"dy calculated : "<<TDP2d1(i).Y()<<endl;
|
||||
cout<<"dy estimated : "<<scal*(TP2d1(i).Y()-TP2d2(i).Y())<<endl;
|
||||
std::cout<<std::endl;
|
||||
std::cout<<"point 2d : "<<i<<std::endl;
|
||||
std::cout<<"dx calculated : "<<TDP2d1(i).X()<<std::endl;
|
||||
std::cout<<"dx estimated : "<<scal*(TP2d1(i).X()-TP2d2(i).X())<<std::endl;
|
||||
std::cout<<"dy calculated : "<<TDP2d1(i).Y()<<std::endl;
|
||||
std::cout<<"dy estimated : "<<scal*(TP2d1(i).Y()-TP2d2(i).Y())<<std::endl;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -717,7 +717,7 @@ void BRepBlend_SurfRstLineBuilder::InternalPerform(Blend_SurfRstFunction& Func,
|
||||
else{
|
||||
// Failed reframing. Leave with PointsConfondus
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"SurfRstLineBuilder : failed reframing"<<endl;
|
||||
std::cout<<"SurfRstLineBuilder : failed reframing"<<std::endl;
|
||||
#endif
|
||||
State = Blend_SamePoints;
|
||||
}
|
||||
@ -772,7 +772,7 @@ void BRepBlend_SurfRstLineBuilder::InternalPerform(Blend_SurfRstFunction& Func,
|
||||
if (line->NbPoints()>=2) {
|
||||
// Indicate that one stops during the processing
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"SurfRstLineBuilder : No advancement in the processing"<<endl;
|
||||
std::cout<<"SurfRstLineBuilder : No advancement in the processing"<<std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -878,7 +878,7 @@ void BRepBlend_SurfRstLineBuilder::InternalPerform(Blend_SurfRstFunction& Func,
|
||||
{
|
||||
// Stop
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "SurfRstLineBuilder Points mixed in the processing" << endl;
|
||||
std::cout << "SurfRstLineBuilder Points mixed in the processing" << std::endl;
|
||||
#endif
|
||||
previousP.ParametersOnS(U,V);
|
||||
Exts.SetValue(previousP.PointOnS(),U,V,
|
||||
@ -951,7 +951,7 @@ Standard_Boolean BRepBlend_SurfRstLineBuilder::Recadre(Blend_SurfCurvFuncInv&
|
||||
|
||||
if (!rsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "SurfRstLineBuilder : RSNLD not done "<< endl << endl;
|
||||
std::cout << "SurfRstLineBuilder : RSNLD not done "<< std::endl << std::endl;
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
@ -990,7 +990,7 @@ Standard_Boolean BRepBlend_SurfRstLineBuilder::Recadre(Blend_SurfCurvFuncInv&
|
||||
|
||||
if (!aRsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "SurfRstLineBuilder : RSNLD not done "<< endl << endl;
|
||||
std::cout << "SurfRstLineBuilder : RSNLD not done "<< std::endl << std::endl;
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
@ -1051,7 +1051,7 @@ Standard_Boolean BRepBlend_SurfRstLineBuilder::Recadre(Blend_SurfRstFunction&
|
||||
rsnld.Perform(Finv,Solinv,infb,supb);
|
||||
if (!rsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "SurfRstLineBuilder :RSNLD not done "<< endl;
|
||||
std::cout << "SurfRstLineBuilder :RSNLD not done "<< std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -1135,7 +1135,7 @@ Standard_Boolean BRepBlend_SurfRstLineBuilder::Recadre(Blend_SurfPointFuncInv&
|
||||
rsnld.Perform(FinvP,Solinv,infb,supb);
|
||||
if (!rsnld.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "SurfRstLineBuilder :RSNLD not done "<< endl;
|
||||
std::cout << "SurfRstLineBuilder :RSNLD not done "<< std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
|
@ -330,7 +330,7 @@ void BRepBuilderAPI_FastSewing::Perform(void)
|
||||
{
|
||||
SetStatus(FS_Exception);
|
||||
#ifdef OCCT_DEBUG
|
||||
//Standard_Failure::Caught()->Print(cout);
|
||||
//Standard_Failure::Caught()->Print(std::cout);
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
|
@ -145,8 +145,8 @@ Handle(Geom2d_Curve) BRepBuilderAPI_Sewing::SameRange(const Handle(Geom2d_Curve)
|
||||
}
|
||||
catch (Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Exception in BRepBuilderAPI_Sewing::SameRange: ";
|
||||
anException.Print(cout); cout << endl;
|
||||
std::cout << "Exception in BRepBuilderAPI_Sewing::SameRange: ";
|
||||
anException.Print(std::cout); std::cout << std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
}
|
||||
@ -318,8 +318,8 @@ void BRepBuilderAPI_Sewing::SameParameter(const TopoDS_Edge& edge) const
|
||||
}
|
||||
catch (Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Exception in BRepBuilderAPI_Sewing::SameParameter: ";
|
||||
anException.Print(cout); cout << endl;
|
||||
std::cout << "Exception in BRepBuilderAPI_Sewing::SameParameter: ";
|
||||
anException.Print(std::cout); std::cout << std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
}
|
||||
@ -1827,7 +1827,7 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
if (myAnalysis)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Begin face analysis..." << endl;
|
||||
std::cout << "Begin face analysis..." << std::endl;
|
||||
chr_local.Reset();
|
||||
chr_local.Start();
|
||||
#endif
|
||||
@ -1838,7 +1838,7 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
#ifdef OCCT_DEBUG
|
||||
chr_local.Stop();
|
||||
chr_local.Show(t_analysis);
|
||||
cout << "Face analysis finished after " << t_analysis << " s" << endl;
|
||||
std::cout << "Face analysis finished after " << t_analysis << " s" << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -1851,7 +1851,7 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
{
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Begin vertices assembling..." << endl;
|
||||
std::cout << "Begin vertices assembling..." << std::endl;
|
||||
chr_local.Reset();
|
||||
chr_local.Start();
|
||||
#endif
|
||||
@ -1862,12 +1862,12 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
#ifdef OCCT_DEBUG
|
||||
chr_local.Stop();
|
||||
chr_local.Show(t_assembling);
|
||||
cout << "Vertices assembling finished after " << t_assembling << " s" << endl;
|
||||
std::cout << "Vertices assembling finished after " << t_assembling << " s" << std::endl;
|
||||
#endif
|
||||
if (myCutting)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Begin cutting..." << endl;
|
||||
std::cout << "Begin cutting..." << std::endl;
|
||||
chr_local.Reset();
|
||||
chr_local.Start();
|
||||
#endif
|
||||
@ -1878,11 +1878,11 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
#ifdef OCCT_DEBUG
|
||||
chr_local.Stop();
|
||||
chr_local.Show(t_cutting);
|
||||
cout << "Cutting finished after " << t_cutting << " s" << endl;
|
||||
std::cout << "Cutting finished after " << t_cutting << " s" << std::endl;
|
||||
#endif
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Begin merging..." << endl;
|
||||
std::cout << "Begin merging..." << std::endl;
|
||||
chr_local.Reset();
|
||||
chr_local.Start();
|
||||
#endif
|
||||
@ -1893,7 +1893,7 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
#ifdef OCCT_DEBUG
|
||||
chr_local.Stop();
|
||||
chr_local.Show(t_merging);
|
||||
cout << "Merging finished after " << t_merging << " s" << endl;
|
||||
std::cout << "Merging finished after " << t_merging << " s" << std::endl;
|
||||
#endif
|
||||
}
|
||||
else
|
||||
@ -1910,7 +1910,7 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
{
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Creating sewed shape..." << endl;
|
||||
std::cout << "Creating sewed shape..." << std::endl;
|
||||
#endif
|
||||
// examine the multiple edges if any and process sameparameter for edges if necessary
|
||||
EdgeProcessing (thePI);
|
||||
@ -1933,7 +1933,7 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
return;
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Sewed shape created" << endl;
|
||||
std::cout << "Sewed shape created" << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -1948,12 +1948,12 @@ void BRepBuilderAPI_Sewing::Perform(const Handle(Message_ProgressIndicator)& the
|
||||
#ifdef OCCT_DEBUG
|
||||
chr_total.Stop();
|
||||
chr_total.Show(t_total);
|
||||
cout << "Sewing finished!" << endl;
|
||||
cout << " analysis time : " << t_analysis << " s" << endl;
|
||||
cout << " assembling time : " << t_assembling << " s" << endl;
|
||||
cout << " cutting time : " << t_cutting << " s" << endl;
|
||||
cout << " merging time : " << t_merging << " s" << endl;
|
||||
cout << "Total time : " << t_total << " s" << endl;
|
||||
std::cout << "Sewing finished!" << std::endl;
|
||||
std::cout << " analysis time : " << t_analysis << " s" << std::endl;
|
||||
std::cout << " assembling time : " << t_assembling << " s" << std::endl;
|
||||
std::cout << " cutting time : " << t_cutting << " s" << std::endl;
|
||||
std::cout << " merging time : " << t_merging << " s" << std::endl;
|
||||
std::cout << "Total time : " << t_total << " s" << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -2205,23 +2205,23 @@ void BRepBuilderAPI_Sewing::Dump() const
|
||||
mapVertices.Add(V2);
|
||||
}
|
||||
}
|
||||
cout << " " << endl;
|
||||
cout << " Informations " << endl;
|
||||
cout << " ===========================================================" << endl;
|
||||
cout << " " << endl;
|
||||
cout << " Number of input shapes : " << myOldShapes.Extent() << endl;
|
||||
cout << " Number of actual shapes : " << myNbShapes << endl;
|
||||
cout << " Number of Bounds : " << NbBounds << endl;
|
||||
cout << " Number of Sections : " << NbSections << endl;
|
||||
cout << " Number of Edges : " << mapEdges.Extent() << endl;
|
||||
cout << " Number of Vertices : " << myNbVertices << endl;
|
||||
cout << " Number of Nodes : " << mapVertices.Extent() << endl;
|
||||
cout << " Number of Free Edges : " << myFreeEdges.Extent() << endl;
|
||||
cout << " Number of Contigous Edges : " << myContigousEdges.Extent() << endl;
|
||||
cout << " Number of Multiple Edges : " << myMultipleEdges.Extent() << endl;
|
||||
cout << " Number of Degenerated Edges : " << myDegenerated.Extent() << endl;
|
||||
cout << " ===========================================================" << endl;
|
||||
cout << " " << endl;
|
||||
std::cout << " " << std::endl;
|
||||
std::cout << " Informations " << std::endl;
|
||||
std::cout << " ===========================================================" << std::endl;
|
||||
std::cout << " " << std::endl;
|
||||
std::cout << " Number of input shapes : " << myOldShapes.Extent() << std::endl;
|
||||
std::cout << " Number of actual shapes : " << myNbShapes << std::endl;
|
||||
std::cout << " Number of Bounds : " << NbBounds << std::endl;
|
||||
std::cout << " Number of Sections : " << NbSections << std::endl;
|
||||
std::cout << " Number of Edges : " << mapEdges.Extent() << std::endl;
|
||||
std::cout << " Number of Vertices : " << myNbVertices << std::endl;
|
||||
std::cout << " Number of Nodes : " << mapVertices.Extent() << std::endl;
|
||||
std::cout << " Number of Free Edges : " << myFreeEdges.Extent() << std::endl;
|
||||
std::cout << " Number of Contigous Edges : " << myContigousEdges.Extent() << std::endl;
|
||||
std::cout << " Number of Multiple Edges : " << myMultipleEdges.Extent() << std::endl;
|
||||
std::cout << " Number of Degenerated Edges : " << myDegenerated.Extent() << std::endl;
|
||||
std::cout << " ===========================================================" << std::endl;
|
||||
std::cout << " " << std::endl;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -2297,7 +2297,7 @@ void BRepBuilderAPI_Sewing::FaceAnalysis(const Handle(Message_ProgressIndicator)
|
||||
Handle(Geom_Curve) c3d = BRep_Tool::Curve(edge,first,last);
|
||||
if (c3d.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: Possibly small edge can be sewed: No 3D curve" << endl;
|
||||
std::cout << "Warning: Possibly small edge can be sewed: No 3D curve" << std::endl;
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
@ -2318,8 +2318,8 @@ void BRepBuilderAPI_Sewing::FaceAnalysis(const Handle(Message_ProgressIndicator)
|
||||
}
|
||||
catch (Standard_Failure) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: Possibly small edge can be sewed: ";
|
||||
Standard_Failure::Caught()->Print(cout); cout << endl;
|
||||
std::cout << "Warning: Possibly small edge can be sewed: ";
|
||||
Standard_Failure::Caught()->Print(std::cout); std::cout << std::endl;
|
||||
#endif
|
||||
}*/
|
||||
}
|
||||
@ -2377,7 +2377,7 @@ void BRepBuilderAPI_Sewing::FaceAnalysis(const Handle(Message_ProgressIndicator)
|
||||
// Replace small edge
|
||||
if (isSmall) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: Small edge made degenerated by FaceAnalysis" << endl;
|
||||
std::cout << "Warning: Small edge made degenerated by FaceAnalysis" << std::endl;
|
||||
#endif
|
||||
nbSmall++;
|
||||
// Create new degenerated edge
|
||||
@ -2414,7 +2414,7 @@ void BRepBuilderAPI_Sewing::FaceAnalysis(const Handle(Message_ProgressIndicator)
|
||||
// Remove small face
|
||||
if (nbSmall == nbEdges) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: Small face removed by FaceAnalysis" << endl;
|
||||
std::cout << "Warning: Small face removed by FaceAnalysis" << std::endl;
|
||||
#endif
|
||||
myLittleFace.Add(face);
|
||||
myReShape->Remove(face);
|
||||
@ -2801,7 +2801,7 @@ static Standard_Boolean GlueVertices(TopTools_IndexedDataMapOfShapeShape& aVerte
|
||||
}
|
||||
Standard_Integer nbNodes = NodeVertices.Extent();
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Glueing " << nbNodes << " nodes..." << endl;
|
||||
std::cout << "Glueing " << nbNodes << " nodes..." << std::endl;
|
||||
#endif
|
||||
// Merge nearest nodes
|
||||
TopTools_IndexedDataMapOfShapeShape NodeNearestNode;
|
||||
@ -2962,7 +2962,7 @@ void BRepBuilderAPI_Sewing::VerticesAssembling(const Handle(Message_ProgressIndi
|
||||
// Glue vertices
|
||||
if (nbVert) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Assemble " << nbVert << " vertices on faces..." << endl;
|
||||
std::cout << "Assemble " << nbVert << " vertices on faces..." << std::endl;
|
||||
#endif
|
||||
while (GlueVertices(myVertexNode,myNodeSections,myBoundFaces,myTolerance, thePI));
|
||||
}
|
||||
@ -2971,7 +2971,7 @@ void BRepBuilderAPI_Sewing::VerticesAssembling(const Handle(Message_ProgressIndi
|
||||
aPS.Next();
|
||||
if (nbVertFree) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Assemble " << nbVertFree << " vertices on floating edges..." << endl;
|
||||
std::cout << "Assemble " << nbVertFree << " vertices on floating edges..." << std::endl;
|
||||
#endif
|
||||
while (GlueVertices(myVertexNodeFree,myNodeSections,myBoundFaces,myTolerance, thePI));
|
||||
}
|
||||
@ -3737,8 +3737,8 @@ void BRepBuilderAPI_Sewing::Cutting(const Handle(Message_ProgressIndicator)& the
|
||||
}
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "From " << nbBounds << " bounds " << myBoundSections.Extent()
|
||||
<< " were cut into " << mySectionBound.Extent() << " sections" << endl;
|
||||
std::cout << "From " << nbBounds << " bounds " << myBoundSections.Extent()
|
||||
<< " were cut into " << mySectionBound.Extent() << " sections" << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -4364,8 +4364,8 @@ void BRepBuilderAPI_Sewing::ProjectPointsOnCurve(const TColgp_Array1OfPnt& arrPn
|
||||
}
|
||||
catch (Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Exception in BRepBuilderAPI_Sewing::ProjectPointsOnCurve: ";
|
||||
anException.Print(cout); cout << endl;
|
||||
std::cout << "Exception in BRepBuilderAPI_Sewing::ProjectPointsOnCurve: ";
|
||||
anException.Print(std::cout); std::cout << std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
worktol = MinTolerance();
|
||||
@ -4704,8 +4704,8 @@ void BRepBuilderAPI_Sewing::CreateSections(const TopoDS_Shape& section,
|
||||
//}
|
||||
/*catch (Standard_Failure) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Exception in CreateSections: segment [" << par1 << "," << par2 << "]: ";
|
||||
Standard_Failure::Caught()->Print(cout); cout << endl;
|
||||
std::cout << "Exception in CreateSections: segment [" << par1 << "," << par2 << "]: ";
|
||||
Standard_Failure::Caught()->Print(std::cout); std::cout << std::endl;
|
||||
#endif
|
||||
Handle(Geom2d_TrimmedCurve) c2dT = new Geom2d_TrimmedCurve(c2dNew,Max(first2d,par1),Min(par2,last2d));
|
||||
c2dNew = c2dT;
|
||||
@ -4746,7 +4746,7 @@ void BRepBuilderAPI_Sewing::SameParameterShape()
|
||||
}
|
||||
catch (Standard_Failure const&) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Fail: BRepBuilderAPI_Sewing::SameParameterShape exception in BRepLib::SameParameter" << endl;
|
||||
std::cout << "Fail: BRepBuilderAPI_Sewing::SameParameterShape exception in BRepLib::SameParameter" << std::endl;
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
|
@ -135,9 +135,9 @@ void BRepCheck_Analyzer::Perform(const TopoDS_Shape& S)
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
if ( ! myMap(S).IsNull() )
|
||||
@ -164,9 +164,9 @@ void BRepCheck_Analyzer::Perform(const TopoDS_Shape& S)
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
if ( ! myMap(S).IsNull() )
|
||||
@ -202,9 +202,9 @@ void BRepCheck_Analyzer::Perform(const TopoDS_Shape& S)
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
if ( ! myMap(S).IsNull() )
|
||||
@ -262,9 +262,9 @@ void BRepCheck_Analyzer::Perform(const TopoDS_Shape& S)
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
if ( ! myMap(S).IsNull() )
|
||||
@ -315,9 +315,9 @@ void BRepCheck_Analyzer::Perform(const TopoDS_Shape& S)
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
if ( ! myMap(S).IsNull() )
|
||||
@ -362,9 +362,9 @@ void BRepCheck_Analyzer::Perform(const TopoDS_Shape& S)
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
if ( ! myMap(S).IsNull() )
|
||||
@ -403,9 +403,9 @@ void BRepCheck_Analyzer::Perform(const TopoDS_Shape& S)
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"BRepCheck_Analyzer : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
if ( ! myMap(S).IsNull() )
|
||||
|
@ -920,10 +920,10 @@ void PrintProblematicPoint(const gp_Pnt& problematic_point,
|
||||
const Standard_Real Error,
|
||||
const Standard_Real Tol)
|
||||
{
|
||||
cout << " **** probleme de SameParameter au point :" << endl;
|
||||
cout << " " << problematic_point.Coord(1) << " "
|
||||
<< problematic_point.Coord(2) << " " << problematic_point.Coord(3) << endl ;
|
||||
cout << " Erreur detectee :" << Error << " Tolerance :" << Tol << endl;
|
||||
std::cout << " **** probleme de SameParameter au point :" << std::endl;
|
||||
std::cout << " " << problematic_point.Coord(1) << " "
|
||||
<< problematic_point.Coord(2) << " " << problematic_point.Coord(3) << std::endl ;
|
||||
std::cout << " Erreur detectee :" << Error << " Tolerance :" << Tol << std::endl;
|
||||
}
|
||||
#else
|
||||
void PrintProblematicPoint(const gp_Pnt&,
|
||||
|
@ -477,11 +477,11 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
||||
if (BRepCheck_Trace(0) > 1) {
|
||||
TopTools_DataMapIteratorOfDataMapOfShapeInteger itt(MapOfShapeOrientation);
|
||||
Standard_Integer upper = MapOfShapeOrientation.NbBuckets();
|
||||
cout << "La map shape Orientation :" << endl;
|
||||
std::cout << "La map shape Orientation :" << std::endl;
|
||||
for (; itt.More(); itt.Next()) {
|
||||
PrintShape(itt.Key(), upper);
|
||||
}
|
||||
cout << endl;
|
||||
std::cout << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -666,7 +666,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if (BRepCheck_Trace(0) > 3) {
|
||||
cout << "Fref : " ;
|
||||
std::cout << "Fref : " ;
|
||||
PrintShape(Fref, MapOfShapeOrientation.NbBuckets());
|
||||
}
|
||||
#endif
|
||||
@ -709,7 +709,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if (BRepCheck_Trace(0) > 3) {
|
||||
cout << " Fcur : " ;
|
||||
std::cout << " Fcur : " ;
|
||||
PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
|
||||
}
|
||||
#endif
|
||||
@ -731,8 +731,8 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
||||
if (BRepCheck_Trace(0) > 3) {
|
||||
orf = (TopAbs_Orientation)MapOfShapeOrientation.Find(Fcur);
|
||||
Fcur.Orientation(orf);
|
||||
cout << " Error : this face has been already examined " << endl;
|
||||
cout << " Imposible to return it ";
|
||||
std::cout << " Error : this face has been already examined " << std::endl;
|
||||
std::cout << " Imposible to return it ";
|
||||
PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
|
||||
}
|
||||
#endif
|
||||
@ -746,7 +746,7 @@ BRepCheck_Status BRepCheck_Shell::Orientation(const Standard_Boolean Update)
|
||||
if (BRepCheck_Trace(0) > 3) {
|
||||
orf = (TopAbs_Orientation)MapOfShapeOrientation.Find(Fcur);
|
||||
Fcur.Orientation(orf);
|
||||
cout << " Resulting Fcur is returned : " ;
|
||||
std::cout << " Resulting Fcur is returned : " ;
|
||||
PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
|
||||
}
|
||||
#endif
|
||||
|
@ -380,13 +380,13 @@ Standard_Boolean IsDistanceIn3DTolerance (const gp_Pnt& thePnt_f,
|
||||
return Standard_True;
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << endl;
|
||||
cout << "--------Function IsDistanceIn3DTolerance(...)----------" << endl;
|
||||
cout << "--- BRepCheck Wire: Closed3d -> Error" << endl;
|
||||
cout << "--- Dist (" << Dist << ") > Tol3d (" << aTol3d << ")" << endl;
|
||||
cout << "Pnt1(" << thePnt_f.X() << "; " << thePnt_f.Y() << "; " << thePnt_f.Z() << ")" << endl;
|
||||
cout << "Pnt2(" << thePnt_l.X() << "; " << thePnt_l.Y() << "; " << thePnt_l.Z() << ")" << endl;
|
||||
cout << "------------------------------------------------------" << endl;
|
||||
std::cout << std::endl;
|
||||
std::cout << "--------Function IsDistanceIn3DTolerance(...)----------" << std::endl;
|
||||
std::cout << "--- BRepCheck Wire: Closed3d -> Error" << std::endl;
|
||||
std::cout << "--- Dist (" << Dist << ") > Tol3d (" << aTol3d << ")" << std::endl;
|
||||
std::cout << "Pnt1(" << thePnt_f.X() << "; " << thePnt_f.Y() << "; " << thePnt_f.Z() << ")" << std::endl;
|
||||
std::cout << "Pnt2(" << thePnt_l.X() << "; " << thePnt_l.Y() << "; " << thePnt_l.Z() << ")" << std::endl;
|
||||
std::cout << "------------------------------------------------------" << std::endl;
|
||||
#endif
|
||||
|
||||
return Standard_False;
|
||||
@ -418,19 +418,19 @@ Standard_Boolean IsDistanceIn2DTolerance (const BRepAdaptor_Surface& aFaceSurfac
|
||||
#ifdef OCCT_DEBUG
|
||||
if(PrintWarnings)
|
||||
{
|
||||
cout << endl;
|
||||
cout << "--------Function IsDistanceIn2DTolerance(...)----------" << endl;
|
||||
cout << "--- BRepCheck Wire: Not closed in 2D" << endl;
|
||||
cout << "*****************************************************" << endl;
|
||||
cout << "*dumin = " << dumin << "; dumax = " << dumax << endl;
|
||||
cout << "* dvmin = " << dvmin << "; dvmax = " << dvmax << endl;
|
||||
cout << "* (dumin > dumax) or (dvmin > dvmax)." << endl;
|
||||
cout << "*****************************************************" << endl;
|
||||
cout << endl;
|
||||
cout << "UFirst = " << aFaceSurface.FirstUParameter();
|
||||
cout << "; ULast = " << aFaceSurface.LastUParameter() << endl;
|
||||
cout << "VFirst = " << aFaceSurface.FirstVParameter();
|
||||
cout << "; VLast = " << aFaceSurface.LastVParameter() << endl;
|
||||
std::cout << std::endl;
|
||||
std::cout << "--------Function IsDistanceIn2DTolerance(...)----------" << std::endl;
|
||||
std::cout << "--- BRepCheck Wire: Not closed in 2D" << std::endl;
|
||||
std::cout << "*****************************************************" << std::endl;
|
||||
std::cout << "*dumin = " << dumin << "; dumax = " << dumax << std::endl;
|
||||
std::cout << "* dvmin = " << dvmin << "; dvmax = " << dvmax << std::endl;
|
||||
std::cout << "* (dumin > dumax) or (dvmin > dvmax)." << std::endl;
|
||||
std::cout << "*****************************************************" << std::endl;
|
||||
std::cout << std::endl;
|
||||
std::cout << "UFirst = " << aFaceSurface.FirstUParameter();
|
||||
std::cout << "; ULast = " << aFaceSurface.LastUParameter() << std::endl;
|
||||
std::cout << "VFirst = " << aFaceSurface.FirstVParameter();
|
||||
std::cout << "; VLast = " << aFaceSurface.LastVParameter() << std::endl;
|
||||
}
|
||||
#endif
|
||||
dumax = aFaceSurface.UResolution(aTol3d);
|
||||
@ -454,9 +454,9 @@ Standard_Boolean IsDistanceIn2DTolerance (const BRepAdaptor_Surface& aFaceSurfac
|
||||
#ifdef OCCT_DEBUG
|
||||
if(PrintWarnings)
|
||||
{
|
||||
cout << "aTol3d = " << aTol3d <<"; URes = " << dumax << "; VRes = " << dvmax << endl;
|
||||
cout << "thePnt(" << thePnt.X() << "; " << thePnt.Y() << ")" << endl;
|
||||
cout << "thePntRef(" << thePntRef.X() << "; " << thePntRef.Y() << ")" << endl;
|
||||
std::cout << "aTol3d = " << aTol3d <<"; URes = " << dumax << "; VRes = " << dvmax << std::endl;
|
||||
std::cout << "thePnt(" << thePnt.X() << "; " << thePnt.Y() << ")" << std::endl;
|
||||
std::cout << "thePntRef(" << thePntRef.X() << "; " << thePntRef.Y() << ")" << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -465,8 +465,8 @@ Standard_Boolean IsDistanceIn2DTolerance (const BRepAdaptor_Surface& aFaceSurfac
|
||||
#ifdef OCCT_DEBUG
|
||||
if((aTol2d <= 0.0) && (PrintWarnings))
|
||||
{
|
||||
cout<<"BRepCheck_Wire : UResolution and VResolution = 0.0 (Face too small ?)"<<endl;
|
||||
cout.flush();
|
||||
std::cout<<"BRepCheck_Wire : UResolution and VResolution = 0.0 (Face too small ?)"<<std::endl;
|
||||
std::cout.flush();
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -478,15 +478,15 @@ Standard_Boolean IsDistanceIn2DTolerance (const BRepAdaptor_Surface& aFaceSurfac
|
||||
#ifdef OCCT_DEBUG
|
||||
if(PrintWarnings)
|
||||
{
|
||||
cout << endl;
|
||||
cout << "--------Function IsDistanceIn2DTolerance(...)----------" << endl;
|
||||
cout << "--- BRepCheck Wire: Not closed in 2d" << endl;
|
||||
cout << "*****************************************************" << endl;
|
||||
cout << "* Dist = " << Dist << " > Tol2d = " << aTol2d << endl;
|
||||
cout << "*****************************************************" << endl;
|
||||
cout << "aTol3d = " << aTol3d <<"; URes = " << dumax << "; VRes = " << dvmax << endl;
|
||||
cout << "thePnt(" << thePnt.X() << "; " << thePnt.Y() << ")" << endl;
|
||||
cout << "thePntRef(" << thePntRef.X() << "; " << thePntRef.Y() << ")" << endl;
|
||||
std::cout << std::endl;
|
||||
std::cout << "--------Function IsDistanceIn2DTolerance(...)----------" << std::endl;
|
||||
std::cout << "--- BRepCheck Wire: Not closed in 2d" << std::endl;
|
||||
std::cout << "*****************************************************" << std::endl;
|
||||
std::cout << "* Dist = " << Dist << " > Tol2d = " << aTol2d << std::endl;
|
||||
std::cout << "*****************************************************" << std::endl;
|
||||
std::cout << "aTol3d = " << aTol3d <<"; URes = " << dumax << "; VRes = " << dvmax << std::endl;
|
||||
std::cout << "thePnt(" << thePnt.X() << "; " << thePnt.Y() << ")" << std::endl;
|
||||
std::cout << "thePntRef(" << thePntRef.X() << "; " << thePntRef.Y() << ")" << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -1071,7 +1071,7 @@ BRepCheck_Status BRepCheck_Wire::SelfIntersect(const TopoDS_Face& F,
|
||||
delete [] tabDom;
|
||||
#ifdef OCCT_DEBUG
|
||||
static Standard_Integer numpoint=0;
|
||||
cout<<"point p"<<++numpoint<<" "<<P3d.X()<<" "<<P3d.Y()<<" "<<P3d.Z()<<endl;cout.flush();
|
||||
std::cout<<"point p"<<++numpoint<<" "<<P3d.X()<<" "<<P3d.Y()<<" "<<P3d.Z()<<std::endl;std::cout.flush();
|
||||
#endif
|
||||
return(BRepCheck_SelfIntersectingWire);
|
||||
}
|
||||
@ -1103,7 +1103,7 @@ BRepCheck_Status BRepCheck_Wire::SelfIntersect(const TopoDS_Face& F,
|
||||
else {
|
||||
delete [] tabDom;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"BRepCheck_NoCurveOnSurface or BRepCheck_InvalidRange"<<endl;cout.flush();
|
||||
std::cout<<"BRepCheck_NoCurveOnSurface or BRepCheck_InvalidRange"<<std::endl;std::cout.flush();
|
||||
#endif
|
||||
if(tabCur(j).IsNull()) {
|
||||
return(BRepCheck_NoCurveOnSurface);
|
||||
@ -1225,8 +1225,8 @@ BRepCheck_Status BRepCheck_Wire::SelfIntersect(const TopoDS_Face& F,
|
||||
//-- the point of intersection with vertex (if exists)
|
||||
if (localok == Standard_False && !CommonVertices.IsEmpty()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "\n------------------------------------------------------\n" <<endl;
|
||||
cout << "\n--- BRepCheck Wire: AutoIntersection Phase1 -> Erreur \n" <<endl;
|
||||
std::cout << "\n------------------------------------------------------\n" <<std::endl;
|
||||
std::cout << "\n--- BRepCheck Wire: AutoIntersection Phase1 -> Erreur \n" <<std::endl;
|
||||
|
||||
#endif
|
||||
Standard_Real distauvtxleplusproche,VParaOnEdge1,VParaOnEdge2;
|
||||
@ -1356,8 +1356,8 @@ BRepCheck_Status BRepCheck_Wire::SelfIntersect(const TopoDS_Face& F,
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
static Standard_Integer numpoint1=0;
|
||||
cout<<"point p"<<++numpoint1<<" "<<P3d.X()<<" "<<P3d.Y()<<" "<<P3d.Z()<<endl;
|
||||
cout.flush();
|
||||
std::cout<<"point p"<<++numpoint1<<" "<<P3d.X()<<" "<<P3d.Y()<<" "<<P3d.Z()<<std::endl;
|
||||
std::cout.flush();
|
||||
#endif
|
||||
delete [] tabDom;
|
||||
return(BRepCheck_SelfIntersectingWire);
|
||||
@ -1490,8 +1490,8 @@ BRepCheck_Status BRepCheck_Wire::SelfIntersect(const TopoDS_Face& F,
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
static Standard_Integer numpoint1=0;
|
||||
cout<<"point p"<<++numpoint1<<" "<<P3d.X()<<" "<<P3d.Y()<<" "<<P3d.Z()<<endl;
|
||||
cout.flush();
|
||||
std::cout<<"point p"<<++numpoint1<<" "<<P3d.X()<<" "<<P3d.Y()<<" "<<P3d.Z()<<std::endl;
|
||||
std::cout.flush();
|
||||
#endif
|
||||
delete [] tabDom;
|
||||
return(BRepCheck_SelfIntersectingWire);
|
||||
|
@ -443,7 +443,7 @@ void BRepClass3d_SClassifier::Perform(BRepClass3d_SolidExplorer& SolidExplorer,
|
||||
if (tran == IntCurveSurface_Tangent)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"*Problem ds BRepClass3d_SClassifier.cxx"<<endl;
|
||||
std::cout<<"*Problem ds BRepClass3d_SClassifier.cxx"<<std::endl;
|
||||
#endif
|
||||
continue; // ignore this point
|
||||
}
|
||||
|
@ -655,7 +655,7 @@ Standard_Integer BRepClass3d_SolidExplorer::OtherSegment(const gp_Pnt& P,
|
||||
_Par=0.0;
|
||||
myReject=Standard_True;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"\nWARNING : BRepClass3d_SolidExplorer.cxx (Solid without face)"<<endl;
|
||||
std::cout<<"\nWARNING : BRepClass3d_SolidExplorer.cxx (Solid without face)"<<std::endl;
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
@ -853,7 +853,7 @@ void BRepClass3d_SolidExplorer::InitShape(const TopoDS_Shape& S)
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if(myReject) {
|
||||
cout<<"\nWARNING : BRepClass3d_SolidExplorer.cxx (Solid without face)"<<endl;
|
||||
std::cout<<"\nWARNING : BRepClass3d_SolidExplorer.cxx (Solid without face)"<<std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -533,18 +533,18 @@ void BRepExtrema_DistShapeShape::Dump(Standard_OStream& o) const
|
||||
Standard_Integer i;
|
||||
Standard_Real r1,r2;
|
||||
|
||||
o<< "the distance value is : " << Value()<<endl;
|
||||
o<< "the number of solutions is :"<<NbSolution()<<endl;
|
||||
o<<endl;
|
||||
o<< "the distance value is : " << Value()<<std::endl;
|
||||
o<< "the number of solutions is :"<<NbSolution()<<std::endl;
|
||||
o<<std::endl;
|
||||
for (i=1;i<=NbSolution();i++)
|
||||
{
|
||||
o<<"solution number "<<i<<": "<< endl;
|
||||
o<<"the type of the solution on the first shape is " <<Standard_Integer( SupportTypeShape1(i)) <<endl;
|
||||
o<<"the type of the solution on the second shape is "<<Standard_Integer( SupportTypeShape2(i))<< endl;
|
||||
o<< "the coordinates of the point on the first shape are: "<<endl;
|
||||
o<<"X=" <<PointOnShape1(i).X()<<" Y=" <<PointOnShape1(i).Y()<<" Z="<<PointOnShape1(i).Z()<<endl;
|
||||
o<< "the coordinates of the point on the second shape are: "<<endl;
|
||||
o<<"X="<< PointOnShape2(i).X()<< " Y="<<PointOnShape2(i).Y()<<" Z="<< PointOnShape2(i).Z()<<endl;
|
||||
o<<"solution number "<<i<<": "<< std::endl;
|
||||
o<<"the type of the solution on the first shape is " <<Standard_Integer( SupportTypeShape1(i)) <<std::endl;
|
||||
o<<"the type of the solution on the second shape is "<<Standard_Integer( SupportTypeShape2(i))<< std::endl;
|
||||
o<< "the coordinates of the point on the first shape are: "<<std::endl;
|
||||
o<<"X=" <<PointOnShape1(i).X()<<" Y=" <<PointOnShape1(i).Y()<<" Z="<<PointOnShape1(i).Z()<<std::endl;
|
||||
o<< "the coordinates of the point on the second shape are: "<<std::endl;
|
||||
o<<"X="<< PointOnShape2(i).X()<< " Y="<<PointOnShape2(i).Y()<<" Z="<< PointOnShape2(i).Z()<<std::endl;
|
||||
|
||||
switch (SupportTypeShape1(i))
|
||||
{
|
||||
@ -552,11 +552,11 @@ void BRepExtrema_DistShapeShape::Dump(Standard_OStream& o) const
|
||||
break;
|
||||
case BRepExtrema_IsOnEdge:
|
||||
ParOnEdgeS1(i,r1);
|
||||
o << "parameter on the first edge : t= " << r1 << endl;
|
||||
o << "parameter on the first edge : t= " << r1 << std::endl;
|
||||
break;
|
||||
case BRepExtrema_IsInFace:
|
||||
ParOnFaceS1(i,r1,r2);
|
||||
o << "parameters on the first face : u= " << r1 << " v=" << r2 << endl;
|
||||
o << "parameters on the first face : u= " << r1 << " v=" << r2 << std::endl;
|
||||
break;
|
||||
}
|
||||
switch (SupportTypeShape2(i))
|
||||
@ -565,13 +565,13 @@ void BRepExtrema_DistShapeShape::Dump(Standard_OStream& o) const
|
||||
break;
|
||||
case BRepExtrema_IsOnEdge:
|
||||
ParOnEdgeS2(i,r1);
|
||||
o << "parameter on the second edge : t=" << r1 << endl;
|
||||
o << "parameter on the second edge : t=" << r1 << std::endl;
|
||||
break;
|
||||
case BRepExtrema_IsInFace:
|
||||
ParOnFaceS2(i,r1,r2);
|
||||
o << "parameters on the second face : u= " << r1 << " v=" << r2 << endl;
|
||||
o << "parameters on the second face : u= " << r1 << " v=" << r2 << std::endl;
|
||||
break;
|
||||
}
|
||||
o<<endl;
|
||||
o<<std::endl;
|
||||
}
|
||||
}
|
||||
|
@ -74,13 +74,13 @@ static void Descendants(const TopoDS_Shape&,
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_Form::GlobalPerform ()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_Form::GlobalPerform ()" << std::endl;
|
||||
#endif
|
||||
|
||||
if (!mySbOK || !myGSOK || !mySFOK || !mySUOK || !myGFOK ||
|
||||
!mySkOK || !myPSOK) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Fields not initialized in BRepFeat_Form" << endl;
|
||||
if (trc) std::cout << " Fields not initialized in BRepFeat_Form" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NotInitialized;
|
||||
NotDone();
|
||||
@ -94,7 +94,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
|
||||
if(myJustFeat && !myFuse) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Invalid option : myJustFeat + Cut" << endl;
|
||||
if (trc) std::cout << " Invalid option : myJustFeat + Cut" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_InvOption;
|
||||
NotDone();
|
||||
@ -124,7 +124,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
if (!exp.More()) {
|
||||
FromInShape = Standard_False;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " From not in Shape" << endl;
|
||||
if (trc) std::cout << " From not in Shape" << std::endl;
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
@ -143,7 +143,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
if (!exp.More()) {
|
||||
UntilInShape = Standard_False;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Until not in Shape" << endl;
|
||||
if (trc) std::cout << " Until not in Shape" << std::endl;
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
@ -292,7 +292,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
|
||||
if (theOpe == 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Gluer" << endl;
|
||||
if (trc) std::cout << " Gluer" << std::endl;
|
||||
#endif
|
||||
Standard_Boolean Collage = Standard_True;
|
||||
// cut by FFrom && FUntil
|
||||
@ -499,7 +499,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
|
||||
if (theOpe == 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " still Gluer" << endl;
|
||||
if (trc) std::cout << " still Gluer" << std::endl;
|
||||
#endif
|
||||
theGlue.Perform();
|
||||
if (theGlue.IsDone()) {
|
||||
@ -510,7 +510,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
myNewEdges = theGlue.Edges();
|
||||
myTgtEdges = theGlue.TgtEdges();
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Gluer result" << endl;
|
||||
if (trc) std::cout << " Gluer result" << std::endl;
|
||||
#endif
|
||||
Done();
|
||||
myShape = theGlue.ResultingShape();
|
||||
@ -531,7 +531,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
|
||||
if (theOpe == 2 && ChangeOpe && myJustGluer) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Gluer failure" << endl;
|
||||
if (trc) std::cout << " Gluer failure" << std::endl;
|
||||
#endif
|
||||
myJustGluer = Standard_False;
|
||||
theOpe = 0;
|
||||
@ -543,12 +543,12 @@ static void Descendants(const TopoDS_Shape&,
|
||||
|
||||
if (theOpe == 2) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No Gluer" << endl;
|
||||
if (trc) std::cout << " No Gluer" << std::endl;
|
||||
#endif
|
||||
TopoDS_Shape theGShape = myGShape;
|
||||
if (ChangeOpe) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Passage to topological operations" << endl;
|
||||
if (trc) std::cout << " Passage to topological operations" << std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -946,7 +946,7 @@ static void Descendants(const TopoDS_Shape&,
|
||||
// Case when no part of the tool is preserved
|
||||
if (!KeepParts) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No parts of tool kept" << endl;
|
||||
if (trc) std::cout << " No parts of tool kept" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoParts;
|
||||
NotDone();
|
||||
@ -1170,7 +1170,7 @@ Standard_Boolean BRepFeat_Form::TransformShapeFU(const Standard_Integer flag)
|
||||
TopExp_Explorer exp(shapefu, TopAbs_FACE);
|
||||
if (!exp.More()) { // no faces... It is necessary to return an error
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " BRepFeat_Form::TransformShapeFU : invalid Shape" << endl;
|
||||
if (trc) std::cout << " BRepFeat_Form::TransformShapeFU : invalid Shape" << std::endl;
|
||||
#endif
|
||||
return Trf;
|
||||
}
|
||||
@ -1228,8 +1228,8 @@ Standard_Boolean BRepFeat_Form::TransformShapeFU(const Standard_Integer flag)
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (Trf && (flag == 0)) cout << " TransformShapeFU From" << endl;
|
||||
if (Trf && (flag == 1)) cout << " TransformShapeFU Until" << endl;
|
||||
if (Trf && (flag == 0)) std::cout << " TransformShapeFU From" << std::endl;
|
||||
if (Trf && (flag == 1)) std::cout << " TransformShapeFU Until" << std::endl;
|
||||
}
|
||||
#endif
|
||||
return Trf;
|
||||
|
@ -100,7 +100,7 @@ void BRepFeat_MakeCylindricalHole::Perform(const Standard_Real Radius)
|
||||
myBotFace = theCylinder.BottomFace();
|
||||
myValidate = Standard_False;
|
||||
|
||||
// BRepTools::Dump(theTool,cout);
|
||||
// BRepTools::Dump(theTool,std::cout);
|
||||
Standard_Boolean Fuse = Standard_False;
|
||||
//
|
||||
AddTool(theTool);
|
||||
@ -524,7 +524,7 @@ void BRepFeat_MakeCylindricalHole::PerformBlind(const Standard_Real Radius,
|
||||
myTopFace = theCylinder.TopFace();
|
||||
myBotFace.Nullify();
|
||||
|
||||
// BRepTools::Dump(theTool,cout);
|
||||
// BRepTools::Dump(theTool,std::cout);
|
||||
Standard_Boolean Fuse = Standard_False;
|
||||
//myBuilder.Perform(theTool,theList,Fuse);
|
||||
//myBuilder.BuildPartsOfTool();
|
||||
|
@ -99,7 +99,7 @@ void BRepFeat_MakeDPrism::Init(const TopoDS_Shape& Sbase,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::Init" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::Init" << std::endl;
|
||||
#endif
|
||||
mySkface = Skface;
|
||||
SketchFaceValid();
|
||||
@ -144,11 +144,11 @@ void BRepFeat_MakeDPrism::Init(const TopoDS_Shape& Sbase,
|
||||
myAngle = Angle;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (myJustFeat) cout << " Just Feature" << endl;
|
||||
if (myFuse) cout << " Fuse" << endl;
|
||||
if (!myFuse) cout << " Cut" << endl;
|
||||
if (!myModify) cout << " Modify = 0" << endl;
|
||||
// cout <<" Angle = " << myAngle << endl;
|
||||
if (myJustFeat) std::cout << " Just Feature" << std::endl;
|
||||
if (myFuse) std::cout << " Fuse" << std::endl;
|
||||
if (!myFuse) std::cout << " Cut" << std::endl;
|
||||
if (!myModify) std::cout << " Modify = 0" << std::endl;
|
||||
// std::cout <<" Angle = " << myAngle << std::endl;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@ -164,7 +164,7 @@ void BRepFeat_MakeDPrism::Add(const TopoDS_Edge& E,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::Add(Edge,face)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::Add(Edge,face)" << std::endl;
|
||||
#endif
|
||||
TopExp_Explorer exp;
|
||||
for (exp.Init(mySbase,TopAbs_FACE);exp.More();exp.Next()) {
|
||||
@ -210,7 +210,7 @@ void BRepFeat_MakeDPrism::Perform(const Standard_Real Height)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::Perform(Height)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::Perform(Height)" << std::endl;
|
||||
#endif
|
||||
mySFrom.Nullify();
|
||||
ShapeFromValid();
|
||||
@ -281,7 +281,7 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& Until)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::Perform(Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::Perform(Until)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -403,7 +403,7 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& From,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::Perform(From,Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::Perform(From,Until)" << std::endl;
|
||||
#endif
|
||||
if (From.IsNull() || Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -574,7 +574,7 @@ void BRepFeat_MakeDPrism::PerformUntilEnd()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::PerformUntilEnd()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::PerformUntilEnd()" << std::endl;
|
||||
#endif
|
||||
myPerfSelection = BRepFeat_SelectionSh;
|
||||
PerfSelectionValid();
|
||||
@ -608,7 +608,7 @@ void BRepFeat_MakeDPrism::PerformFromEnd(const TopoDS_Shape& Until)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::PerformFromEnd(From,Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::PerformFromEnd(From,Until)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -754,7 +754,7 @@ void BRepFeat_MakeDPrism::PerformThruAll()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::PerformThruAll()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::PerformThruAll()" << std::endl;
|
||||
#endif
|
||||
mySUntil.Nullify();
|
||||
ShapeUntilValid();
|
||||
@ -806,7 +806,7 @@ void BRepFeat_MakeDPrism::PerformUntilHeight(const TopoDS_Shape& Until,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::PerformUntilHeight(Until,Height)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::PerformUntilHeight(Until,Height)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
Perform(Height);
|
||||
@ -924,7 +924,7 @@ void BRepFeat_MakeDPrism::BossEdges (const Standard_Integer signature)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeDPrism::BossEdges (integer)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeDPrism::BossEdges (integer)" << std::endl;
|
||||
#endif
|
||||
TopTools_ListOfShape theLastShape;
|
||||
theLastShape.Clear();
|
||||
@ -1073,7 +1073,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase, // shape initial
|
||||
// Standard_Real par = Max( Max( abs(c[1] - c[0]), abs(c[3] - c[2]) ), abs(c[5] - c[4]) );
|
||||
//#endif
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Height = > " << par << endl;
|
||||
std::cout << "Height = > " << par << std::endl;
|
||||
#endif
|
||||
return par;
|
||||
}
|
||||
|
@ -109,7 +109,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeLinearForm::Init" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeLinearForm::Init" << std::endl;
|
||||
#endif
|
||||
Standard_Boolean RevolRib = Standard_False;
|
||||
Done();
|
||||
@ -146,8 +146,8 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
myFuse = Standard_True;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (myFuse) cout << " Fuse" << endl;
|
||||
if (!myFuse) cout << " Cut" << endl;
|
||||
if (myFuse) std::cout << " Fuse" << std::endl;
|
||||
if (!myFuse) std::cout << " Cut" << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -177,7 +177,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
Standard_Real ang = myDir1.Angle(myDir);
|
||||
if(ang != M_PI) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Directions must be opposite" << endl;
|
||||
if (trc) std::cout << " Directions must be opposite" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_BadDirect;
|
||||
NotDone();
|
||||
@ -188,7 +188,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
|
||||
// Rib is centre in the middle of translation
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Rib is centre" << endl;
|
||||
if (trc) std::cout << " Rib is centre" << std::endl;
|
||||
#endif
|
||||
const gp_Vec& DirTranslation = (Direc + Direc1) * 0.5;
|
||||
gp_Trsf T;
|
||||
@ -251,7 +251,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
|
||||
if(!Data) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No Extreme faces" << endl;
|
||||
if (trc) std::cout << " No Extreme faces" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoExtFace;
|
||||
NotDone();
|
||||
@ -277,7 +277,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
|
||||
if(Sliding) { // sliding
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Sliding" << endl;
|
||||
if (trc) std::cout << " Sliding" << std::endl;
|
||||
#endif
|
||||
Sliding = Standard_False;
|
||||
Handle(Geom_Surface) s = BRep_Tool::Surface(FirstFace);
|
||||
@ -353,7 +353,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
// ---case of sliding : construction of the profile face
|
||||
if(Sliding) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " still Sliding" << endl;
|
||||
if (trc) std::cout << " still Sliding" << std::endl;
|
||||
#endif
|
||||
TopoDS_Face Prof;
|
||||
Standard_Boolean ProfileOK;
|
||||
@ -365,8 +365,8 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc)
|
||||
{
|
||||
cout << "Not computable" << endl;
|
||||
cout << "Face profile not computable" << endl;
|
||||
std::cout << "Not computable" << std::endl;
|
||||
std::cout << "Face profile not computable" << std::endl;
|
||||
}
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoFaceProf;
|
||||
@ -382,7 +382,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
// Control if there is everything required to have the material at the proper side
|
||||
if(falseside == Standard_False) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Verify plane and wire orientation" << endl;
|
||||
std::cout << "Verify plane and wire orientation" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_FalseSide;
|
||||
NotDone();
|
||||
@ -683,8 +683,8 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
if(!Sliding) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (Modify) cout << " Sliding failure" << endl;
|
||||
cout << " no Sliding" << endl;
|
||||
if (Modify) std::cout << " Sliding failure" << std::endl;
|
||||
std::cout << " no Sliding" << std::endl;
|
||||
}
|
||||
#endif
|
||||
TopoDS_Face Prof;
|
||||
@ -698,8 +698,8 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc)
|
||||
{
|
||||
cout << "Not computable" << endl;
|
||||
cout << " Face profile not computable" << endl;
|
||||
std::cout << "Not computable" << std::endl;
|
||||
std::cout << " Face profile not computable" << std::endl;
|
||||
}
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoFaceProf;
|
||||
@ -715,7 +715,7 @@ void BRepFeat_MakeLinearForm::Init(const TopoDS_Shape& Sbase,
|
||||
// Control if there is everything required to have the material at the proper side
|
||||
if(falseside == Standard_False) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Verify plane and wire orientation" << endl;
|
||||
std::cout << "Verify plane and wire orientation" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_FalseSide;
|
||||
NotDone();
|
||||
@ -763,7 +763,7 @@ void BRepFeat_MakeLinearForm::Add(const TopoDS_Edge& E,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeLinearForm::Add" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeLinearForm::Add" << std::endl;
|
||||
#endif
|
||||
if(mySlface.IsEmpty()) {
|
||||
TopExp_Explorer exp;
|
||||
@ -803,11 +803,11 @@ void BRepFeat_MakeLinearForm::Perform()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeLinearForm::Perform()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeLinearForm::Perform()" << std::endl;
|
||||
#endif
|
||||
if(mySbase.IsNull() || mySkface.IsNull() || myPbase.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Fields not initialized" << endl;
|
||||
if (trc) std::cout << " Fields not initialized" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NotInitialized;
|
||||
NotDone();
|
||||
@ -846,7 +846,7 @@ void BRepFeat_MakeLinearForm::Perform()
|
||||
const TopoDS_Edge& e = TopoDS::Edge(exx.Current());
|
||||
if(!myMap.IsBound(e)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Sliding face not in Base shape" << endl;
|
||||
if (trc) std::cout << " Sliding face not in Base shape" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_IncSlidFace;
|
||||
NotDone();
|
||||
@ -861,8 +861,8 @@ void BRepFeat_MakeLinearForm::Perform()
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc)
|
||||
{
|
||||
cout << "The case is not computable" << endl;
|
||||
cout << " Glued faces not empty and Until shape not null" << endl;
|
||||
std::cout << "The case is not computable" << std::endl;
|
||||
std::cout << " Glued faces not empty and Until shape not null" << std::endl;
|
||||
}
|
||||
#endif
|
||||
myStatusError = BRepFeat_InvShape;
|
||||
@ -922,7 +922,7 @@ void BRepFeat_MakeLinearForm::Perform()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEATRIB();
|
||||
if (trc) cout << "BRepFeat_MakeLinearForm::Propagate" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeLinearForm::Propagate" << std::endl;
|
||||
#endif
|
||||
gp_Pnt Firstpoint = Firstpnt;
|
||||
gp_Pnt Lastpoint = Lastpnt;
|
||||
@ -1181,7 +1181,7 @@ static void SetGluedFaces(const TopTools_DataMapOfShapeListOfShape& theSlmap,
|
||||
const TopTools_ListOfShape& gfac = thePrism.Shapes(it.Value());
|
||||
if (gfac.Extent() != 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Pb SetGluedFace" << endl;
|
||||
std::cout << "Pb SetGluedFace" << std::endl;
|
||||
#endif
|
||||
}
|
||||
theMap.Bind(gfac.First(),fac);
|
||||
|
@ -68,7 +68,7 @@ void BRepFeat_MakePipe::Init(const TopoDS_Shape& Sbase,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePipe::Init" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePipe::Init" << std::endl;
|
||||
#endif
|
||||
mySbase = Sbase;
|
||||
BasisShapeValid();
|
||||
@ -111,10 +111,10 @@ void BRepFeat_MakePipe::Init(const TopoDS_Shape& Sbase,
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (myJustFeat) cout << " Just Feature" << endl;
|
||||
if (myFuse) cout << " Fuse" << endl;
|
||||
if (!myFuse) cout << " Cut" << endl;
|
||||
if (!myModify) cout << " Modify = 0" << endl;
|
||||
if (myJustFeat) std::cout << " Just Feature" << std::endl;
|
||||
if (myFuse) std::cout << " Fuse" << std::endl;
|
||||
if (!myFuse) std::cout << " Cut" << std::endl;
|
||||
if (!myModify) std::cout << " Modify = 0" << std::endl;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@ -130,7 +130,7 @@ void BRepFeat_MakePipe::Add(const TopoDS_Edge& E,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePipe::Add(Edge,face)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePipe::Add(Edge,face)" << std::endl;
|
||||
#endif
|
||||
TopExp_Explorer exp;
|
||||
for (exp.Init(mySbase,TopAbs_FACE);exp.More();exp.Next()) {
|
||||
@ -176,7 +176,7 @@ void BRepFeat_MakePipe::Perform()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePipe::Perform()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePipe::Perform()" << std::endl;
|
||||
#endif
|
||||
mySFrom.Nullify();
|
||||
ShapeFromValid();
|
||||
@ -232,7 +232,7 @@ void BRepFeat_MakePipe::Perform(const TopoDS_Shape& Until)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePipe::Perform(Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePipe::Perform(Until)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -276,7 +276,7 @@ void BRepFeat_MakePipe::Perform(const TopoDS_Shape& From,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePipe::Perform(From,Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePipe::Perform(From,Until)" << std::endl;
|
||||
#endif
|
||||
if (From.IsNull() || Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
|
@ -98,7 +98,7 @@ void BRepFeat_MakePrism::Init(const TopoDS_Shape& Sbase,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::Init" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::Init" << std::endl;
|
||||
#endif
|
||||
mySkface = Skface;
|
||||
SketchFaceValid();
|
||||
@ -144,10 +144,10 @@ void BRepFeat_MakePrism::Init(const TopoDS_Shape& Sbase,
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (myJustFeat) cout << " Just Feature" << endl;
|
||||
if (myFuse) cout << " Fuse" << endl;
|
||||
if (!myFuse) cout << " Cut" << endl;
|
||||
if (!myModify) cout << " Modify = 0" << endl;
|
||||
if (myJustFeat) std::cout << " Just Feature" << std::endl;
|
||||
if (myFuse) std::cout << " Fuse" << std::endl;
|
||||
if (!myFuse) std::cout << " Cut" << std::endl;
|
||||
if (!myModify) std::cout << " Modify = 0" << std::endl;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@ -163,7 +163,7 @@ void BRepFeat_MakePrism::Add(const TopoDS_Edge& E,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::Add(Edge,face)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::Add(Edge,face)" << std::endl;
|
||||
#endif
|
||||
TopExp_Explorer exp;
|
||||
for (exp.Init(mySbase,TopAbs_FACE);exp.More();exp.Next()) {
|
||||
@ -210,7 +210,7 @@ void BRepFeat_MakePrism::Perform(const Standard_Real Length)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::Perform(Length)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::Perform(Length)" << std::endl;
|
||||
#endif
|
||||
mySFrom.Nullify();
|
||||
ShapeFromValid();
|
||||
@ -310,7 +310,7 @@ void BRepFeat_MakePrism::Perform(const TopoDS_Shape& Until)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::Perform(Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::Perform(Until)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -407,7 +407,7 @@ void BRepFeat_MakePrism::Perform(const TopoDS_Shape& From,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::Perform(From,Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::Perform(From,Until)" << std::endl;
|
||||
#endif
|
||||
if (From.IsNull() || Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -587,7 +587,7 @@ void BRepFeat_MakePrism::PerformUntilEnd()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::PerformUntilEnd()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::PerformUntilEnd()" << std::endl;
|
||||
#endif
|
||||
myPerfSelection = BRepFeat_SelectionSh;
|
||||
PerfSelectionValid();
|
||||
@ -632,7 +632,7 @@ void BRepFeat_MakePrism::PerformFromEnd(const TopoDS_Shape& Until)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::PerformFromEnd(From,Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::PerformFromEnd(From,Until)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -764,7 +764,7 @@ void BRepFeat_MakePrism::PerformThruAll()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::PerformThruAll()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::PerformThruAll()" << std::endl;
|
||||
#endif
|
||||
mySUntil.Nullify();
|
||||
ShapeUntilValid();
|
||||
@ -815,7 +815,7 @@ void BRepFeat_MakePrism::PerformUntilHeight(const TopoDS_Shape& Until,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakePrism::PerformUntilHeight(Until,Length)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakePrism::PerformUntilHeight(Until,Length)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
Perform(Length);
|
||||
|
@ -104,7 +104,7 @@ void BRepFeat_MakeRevol::Init(const TopoDS_Shape& Sbase,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevol::Init" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevol::Init" << std::endl;
|
||||
#endif
|
||||
myAxis = Axis;
|
||||
myPbase = Pbase;
|
||||
@ -148,10 +148,10 @@ void BRepFeat_MakeRevol::Init(const TopoDS_Shape& Sbase,
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (myJustFeat) cout << " Just Feature" << endl;
|
||||
if (myFuse) cout << " Fuse" << endl;
|
||||
if (!myFuse) cout << " Cut" << endl;
|
||||
if (!myModify) cout << " Modify = 0" << endl;
|
||||
if (myJustFeat) std::cout << " Just Feature" << std::endl;
|
||||
if (myFuse) std::cout << " Fuse" << std::endl;
|
||||
if (!myFuse) std::cout << " Cut" << std::endl;
|
||||
if (!myModify) std::cout << " Modify = 0" << std::endl;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
@ -167,7 +167,7 @@ void BRepFeat_MakeRevol::Add(const TopoDS_Edge& E,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevol::Add(Edge,face)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevol::Add(Edge,face)" << std::endl;
|
||||
#endif
|
||||
TopExp_Explorer exp;
|
||||
for (exp.Init(mySbase,TopAbs_FACE);exp.More();exp.Next()) {
|
||||
@ -213,7 +213,7 @@ void BRepFeat_MakeRevol::Perform(const Standard_Real Angle)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevol::Perform(Angle)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevol::Perform(Angle)" << std::endl;
|
||||
#endif
|
||||
mySFrom.Nullify();
|
||||
ShapeFromValid();
|
||||
@ -329,7 +329,7 @@ void BRepFeat_MakeRevol::Perform(const TopoDS_Shape& Until)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevol::Perform(Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevol::Perform(Until)" << std::endl;
|
||||
#endif
|
||||
Standard_Real Angle = 0.;
|
||||
Standard_Boolean TourComplet = Standard_False;
|
||||
@ -360,7 +360,7 @@ void BRepFeat_MakeRevol::Perform(const TopoDS_Shape& Until)
|
||||
if(!TourComplet) {
|
||||
Angle = 2.*M_PI- 3*M_PI/180.;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No complete Revolution" << endl;
|
||||
if (trc) std::cout << " No complete Revolution" << std::endl;
|
||||
#endif
|
||||
}
|
||||
theRevol.Perform(myPbase, myAxis, Angle);
|
||||
@ -449,7 +449,7 @@ void BRepFeat_MakeRevol::Perform(const TopoDS_Shape& From,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevol::Perform(From,Until)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevol::Perform(From,Until)" << std::endl;
|
||||
#endif
|
||||
if (From.IsNull() || Until.IsNull()) {
|
||||
throw Standard_ConstructionError();
|
||||
@ -601,7 +601,7 @@ void BRepFeat_MakeRevol::PerformThruAll()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevol::PerformThruAll()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevol::PerformThruAll()" << std::endl;
|
||||
#endif
|
||||
Perform(2.*M_PI);
|
||||
}
|
||||
@ -616,7 +616,7 @@ void BRepFeat_MakeRevol::PerformUntilAngle(const TopoDS_Shape& Until,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevol::PerformUntilAngle(Until,Angle)" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevol::PerformUntilAngle(Until,Angle)" << std::endl;
|
||||
#endif
|
||||
if (Until.IsNull()) {
|
||||
Perform(Angle);
|
||||
@ -790,7 +790,7 @@ static void VerifGluedFaces(const TopoDS_Face& theSkface,
|
||||
if (!GluedFaces) {
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << " Intersection Revol/skface : no gluing" << endl;
|
||||
if (trc) std::cout << " Intersection Revol/skface : no gluing" << std::endl;
|
||||
#endif
|
||||
theMap.Clear();
|
||||
}
|
||||
|
@ -125,7 +125,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevolutionForm::Init" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevolutionForm::Init" << std::endl;
|
||||
#endif
|
||||
Standard_Boolean RevolRib = Standard_True;
|
||||
Done();
|
||||
@ -174,7 +174,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
GeomAPI_ProjectPointOnCurve proj2(p2, Line);
|
||||
if(proj1.NbPoints() < 1 || proj2.NbPoints() < 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No projection points" << endl;
|
||||
if (trc) std::cout << " No projection points" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoProjPt;
|
||||
NotDone();
|
||||
@ -208,8 +208,8 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
myFuse = Standard_True;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (myFuse) cout << " Fuse" << endl;
|
||||
if (!myFuse) cout << " Cut" << endl;
|
||||
if (myFuse) std::cout << " Fuse" << std::endl;
|
||||
if (!myFuse) std::cout << " Cut" << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -294,7 +294,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
|
||||
if(!Data) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No Extreme faces" << endl;
|
||||
if (trc) std::cout << " No Extreme faces" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoExtFace;
|
||||
NotDone();
|
||||
@ -320,7 +320,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
|
||||
if(Sliding) { // sliding
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Sliding" << endl;
|
||||
if (trc) std::cout << " Sliding" << std::endl;
|
||||
#endif
|
||||
Handle(Geom_Surface) s = BRep_Tool::Surface(FirstFace);
|
||||
if (s->DynamicType() ==
|
||||
@ -360,7 +360,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
GeomAPI_ProjectPointOnCurve proj(myFirstPnt, Line);
|
||||
if(proj.NbPoints() < 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No First Point projection" << endl;
|
||||
if (trc) std::cout << " No First Point projection" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoProjPt;
|
||||
NotDone();
|
||||
@ -372,7 +372,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
GeomAPI_ProjectPointOnCurve proj1(myLastPnt, Line);
|
||||
if(proj.NbPoints() < 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " No Last Point projection" << endl;
|
||||
if (trc) std::cout << " No Last Point projection" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoProjPt;
|
||||
NotDone();
|
||||
@ -474,7 +474,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
// ---case of sliding : construction of the face profile
|
||||
if(Sliding) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " still Sliding" << endl;
|
||||
if (trc) std::cout << " still Sliding" << std::endl;
|
||||
#endif
|
||||
TopoDS_Face Prof;
|
||||
Standard_Boolean ProfileOK;
|
||||
@ -486,8 +486,8 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc)
|
||||
{
|
||||
cout << "Not computable" << endl;
|
||||
cout << "Face profile not computable" << endl;
|
||||
std::cout << "Not computable" << std::endl;
|
||||
std::cout << "Face profile not computable" << std::endl;
|
||||
}
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoFaceProf;
|
||||
@ -503,7 +503,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
// Control if there is everything required to have the material at the proper side
|
||||
if(falseside == Standard_False) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " Verify plane and wire orientation" << endl;
|
||||
std::cout << " Verify plane and wire orientation" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_FalseSide;
|
||||
NotDone();
|
||||
@ -800,8 +800,8 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
if(!Sliding) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) {
|
||||
if (Modify) cout << " Sliding failure" << endl;
|
||||
cout << " no Sliding" << endl;
|
||||
if (Modify) std::cout << " Sliding failure" << std::endl;
|
||||
std::cout << " no Sliding" << std::endl;
|
||||
}
|
||||
#endif
|
||||
TopExp_Explorer explo1(BndFace, TopAbs_WIRE);
|
||||
@ -891,7 +891,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
|
||||
if(!BRepAlgo::IsValid(NewBndFace)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Invalid new bounding face" << endl;
|
||||
std::cout << "Invalid new bounding face" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_InvShape;
|
||||
NotDone();
|
||||
@ -912,8 +912,8 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc)
|
||||
{
|
||||
cout << "Not computable" << endl;
|
||||
cout << " Face profile not computable" << endl;
|
||||
std::cout << "Not computable" << std::endl;
|
||||
std::cout << " Face profile not computable" << std::endl;
|
||||
}
|
||||
#endif
|
||||
myStatusError = BRepFeat_NoFaceProf;
|
||||
@ -929,7 +929,7 @@ void BRepFeat_MakeRevolutionForm::Init(const TopoDS_Shape& Sbase,
|
||||
// Control if there is everything required to have the material at the proper side
|
||||
if(falseside == Standard_False) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " Verify plane and wire orientation" << endl;
|
||||
std::cout << " Verify plane and wire orientation" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_FalseSide;
|
||||
NotDone();
|
||||
@ -978,7 +978,7 @@ void BRepFeat_MakeRevolutionForm::Add(const TopoDS_Edge& E,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevolutionForm::Add" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevolutionForm::Add" << std::endl;
|
||||
#endif
|
||||
if(mySlface.IsEmpty()) {
|
||||
TopExp_Explorer exp;
|
||||
@ -1018,11 +1018,11 @@ void BRepFeat_MakeRevolutionForm::Perform()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_MakeRevolutionForm::Perform()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevolutionForm::Perform()" << std::endl;
|
||||
#endif
|
||||
if(mySbase.IsNull() || mySkface.IsNull() || myPbase.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Fields not initialized" << endl;
|
||||
if (trc) std::cout << " Fields not initialized" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NotInitialized;
|
||||
NotDone();
|
||||
@ -1124,7 +1124,7 @@ void BRepFeat_MakeRevolutionForm::Perform()
|
||||
if(!ASI1.IsDone() || !ASI2.IsDone() ||
|
||||
ASI1.NbPoints(1) != 1 || ASI2.NbPoints(1) != 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Intersection failure" << endl;
|
||||
if (trc) std::cout << " Intersection failure" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_BadIntersect;
|
||||
NotDone();
|
||||
@ -1217,7 +1217,7 @@ void BRepFeat_MakeRevolutionForm::Perform()
|
||||
const TopoDS_Edge& e = TopoDS::Edge(exx.Current());
|
||||
if(!myMap.IsBound(e)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Sliding face not in Base shape" << endl;
|
||||
if (trc) std::cout << " Sliding face not in Base shape" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_IncSlidFace;
|
||||
NotDone();
|
||||
@ -1231,8 +1231,8 @@ void BRepFeat_MakeRevolutionForm::Perform()
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc)
|
||||
{
|
||||
cout << "The case is not computable" << endl;
|
||||
cout << " Glued faces not empty and Until shape not null" << endl;
|
||||
std::cout << "The case is not computable" << std::endl;
|
||||
std::cout << " Glued faces not empty and Until shape not null" << std::endl;
|
||||
}
|
||||
#endif
|
||||
myStatusError = BRepFeat_InvShape;
|
||||
@ -1258,7 +1258,7 @@ Standard_Boolean BRepFeat_MakeRevolutionForm::Propagate(TopTools_ListOfShape& Sl
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEATRIB();
|
||||
if (trc) cout << "BRepFeat_MakeRevolutionForm::Propagate" << endl;
|
||||
if (trc) std::cout << "BRepFeat_MakeRevolutionForm::Propagate" << std::endl;
|
||||
#endif
|
||||
gp_Pnt Firstpoint = Firstpnt;
|
||||
gp_Pnt Lastpoint = Lastpnt;
|
||||
@ -1703,7 +1703,7 @@ static void SetGluedFaces(const TopTools_DataMapOfShapeListOfShape& theSlmap,
|
||||
const TopTools_ListOfShape& gfac = thePrism.Shapes(it.Value());
|
||||
if (gfac.Extent() != 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Pb SetGluedFace" << endl;
|
||||
std::cout << "Pb SetGluedFace" << std::endl;
|
||||
#endif
|
||||
}
|
||||
TopTools_DataMapIteratorOfDataMapOfShapeListOfShape iterm(SlidingMap);
|
||||
|
@ -95,13 +95,13 @@ void BRepFeat_RibSlot::LFPerform()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_RibSlot::LFPerform()" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::LFPerform()" << std::endl;
|
||||
#endif
|
||||
if (mySbase.IsNull() || myPbase.IsNull() || mySkface.IsNull()
|
||||
|| myGShape.IsNull() || myLFMap.IsEmpty()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Topological reconstruction is impossible" << endl;
|
||||
if (trc) cout << " Fields not initialized" << endl;
|
||||
std::cout << "Topological reconstruction is impossible" << std::endl;
|
||||
if (trc) std::cout << " Fields not initialized" << std::endl;
|
||||
#endif
|
||||
myStatusError = BRepFeat_NotInitialized;
|
||||
NotDone();
|
||||
@ -175,7 +175,7 @@ void BRepFeat_RibSlot::LFPerform()
|
||||
(!Collage)) {
|
||||
theOpe = 2;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Passage to topological operations" << endl;
|
||||
std::cout << "Passage to topological operations" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -196,7 +196,7 @@ void BRepFeat_RibSlot::LFPerform()
|
||||
else {
|
||||
theOpe = 2;
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Passage to topologic operation" << endl;
|
||||
std::cout << "Passage to topologic operation" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -264,7 +264,7 @@ const TopTools_ListOfShape& BRepFeat_RibSlot::Modified
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_RibSlot::Modified" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::Modified" << std::endl;
|
||||
#endif
|
||||
if (myMap.IsBound(F)) {
|
||||
static TopTools_ListOfShape list;
|
||||
@ -290,7 +290,7 @@ const TopTools_ListOfShape& BRepFeat_RibSlot::Generated
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_RibSlot::Generated" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::Generated" << std::endl;
|
||||
#endif
|
||||
if(S.ShapeType() != TopAbs_FACE) {
|
||||
myGenerated.Clear();
|
||||
@ -441,7 +441,7 @@ gp_Pnt BRepFeat_RibSlot::CheckPoint(const TopoDS_Edge& e,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEATRIB();
|
||||
if (trc) cout << "BRepFeat_RibSlot::CheckPoint" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::CheckPoint" << std::endl;
|
||||
#endif
|
||||
// Vector product : normal to plane X direction Wire
|
||||
// -> gives the material side
|
||||
@ -474,7 +474,7 @@ gp_Dir BRepFeat_RibSlot::Normal(const TopoDS_Face& F,const gp_Pnt& P)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEATRIB();
|
||||
if (trc) cout << "BRepFeat_RibSlot::Normal" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::Normal" << std::endl;
|
||||
#endif
|
||||
Standard_Real U, V;
|
||||
gp_Pnt pt;
|
||||
@ -561,7 +561,7 @@ void BRepFeat_RibSlot::EdgeExtention(TopoDS_Edge& e,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_RibSlot::EdgeExtention" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::EdgeExtention" << std::endl;
|
||||
#endif
|
||||
Standard_Real f, l;
|
||||
Handle(Geom_Curve) cu = BRep_Tool::Curve(e, f, l);
|
||||
@ -624,7 +624,7 @@ TopoDS_Face BRepFeat_RibSlot::ChoiceOfFaces(TopTools_ListOfShape& faces,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEATRIB();
|
||||
if (trc) cout << "BRepFeat_RibSlot::ChoiceOfFaces" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::ChoiceOfFaces" << std::endl;
|
||||
#endif
|
||||
TopoDS_Face FFF;
|
||||
|
||||
@ -682,7 +682,7 @@ Standard_Real BRepFeat_RibSlot::HeightMax(const TopoDS_Shape& theSbase,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEATRIB();
|
||||
if (trc) cout << "BRepFeat_RibSlot::HeightMax" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::HeightMax" << std::endl;
|
||||
#endif
|
||||
Bnd_Box Box;
|
||||
BRepBndLib::Add(theSbase,Box);
|
||||
@ -724,7 +724,7 @@ Standard_Boolean BRepFeat_RibSlot::ExtremeFaces(const Standard_Boolean RevolRib,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_RibSlot::ExtremeFaces" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::ExtremeFaces" << std::endl;
|
||||
#endif
|
||||
Standard_Boolean Data = Standard_True;
|
||||
FirstFace.Nullify();
|
||||
@ -752,7 +752,7 @@ Standard_Boolean BRepFeat_RibSlot::ExtremeFaces(const Standard_Boolean RevolRib,
|
||||
// ---the wire includes only one edge
|
||||
if(NumberOfEdges == 1) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " One Edge" << endl;
|
||||
if (trc) std::cout << " One Edge" << std::endl;
|
||||
#endif
|
||||
exp.ReInit();
|
||||
Standard_Real f, l;//, f1, l1, temp;
|
||||
@ -898,7 +898,7 @@ Standard_Boolean BRepFeat_RibSlot::ExtremeFaces(const Standard_Boolean RevolRib,
|
||||
|
||||
//--- FirstFace or LastFace was not found
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " FirstFace or LastFace null" << endl;
|
||||
if (trc) std::cout << " FirstFace or LastFace null" << std::endl;
|
||||
#endif
|
||||
LocOpe_CSIntersector ASI(mySbase);
|
||||
TColGeom_SequenceOfCurve scur;
|
||||
@ -940,7 +940,7 @@ Standard_Boolean BRepFeat_RibSlot::ExtremeFaces(const Standard_Boolean RevolRib,
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Less than 2 intersection points" << endl;
|
||||
if (trc) std::cout << " Less than 2 intersection points" << std::endl;
|
||||
#endif
|
||||
Data = Standard_False;
|
||||
return Data;
|
||||
@ -960,13 +960,13 @@ Standard_Boolean BRepFeat_RibSlot::ExtremeFaces(const Standard_Boolean RevolRib,
|
||||
|
||||
if(FirstFace.IsNull() || LastFace.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " First or Last Faces still null" << endl;
|
||||
if (trc) std::cout << " First or Last Faces still null" << std::endl;
|
||||
#endif
|
||||
Data = Standard_False;
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " FirstFace and LastFace OK" << endl;
|
||||
if (trc) std::cout << " FirstFace and LastFace OK" << std::endl;
|
||||
#endif
|
||||
Data = Standard_True;
|
||||
}
|
||||
@ -976,7 +976,7 @@ Standard_Boolean BRepFeat_RibSlot::ExtremeFaces(const Standard_Boolean RevolRib,
|
||||
// ---The wire consists of several edges
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Multiple Edges" << endl;
|
||||
if (trc) std::cout << " Multiple Edges" << std::endl;
|
||||
#endif
|
||||
BRepTools_WireExplorer ex(myWire);
|
||||
for(; ex.More(); ex.Next()) {
|
||||
@ -1156,7 +1156,7 @@ Standard_Boolean BRepFeat_RibSlot::ExtremeFaces(const Standard_Boolean RevolRib,
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " First or Last not OK" << endl;
|
||||
if (trc) std::cout << " First or Last not OK" << std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -1183,7 +1183,7 @@ void BRepFeat_RibSlot::PtOnEdgeVertex(const Standard_Boolean RevolRib,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEATRIB();
|
||||
if (trc) cout << "BRepFeat_RibSlot::PtOnEdgeVertex" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::PtOnEdgeVertex" << std::endl;
|
||||
#endif
|
||||
Standard_Boolean TestOK;
|
||||
// PtOnEdge = Standard_False;
|
||||
@ -1258,7 +1258,7 @@ Standard_Boolean BRepFeat_RibSlot::SlidingProfile(TopoDS_Face& Prof,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_RibSlot::SlidingProfile" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::SlidingProfile" << std::endl;
|
||||
#endif
|
||||
Standard_Boolean ProfileOK = Standard_True;
|
||||
// --case of sliding : construction of the wire of the profile
|
||||
@ -1375,7 +1375,7 @@ Standard_Boolean BRepFeat_RibSlot::SlidingProfile(TopoDS_Face& Prof,
|
||||
|
||||
if(BndEdge1.IsNull() || BndEdge2.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Null bounding edge" << endl;
|
||||
if (trc) std::cout << " Null bounding edge" << std::endl;
|
||||
#endif
|
||||
ProfileOK = Standard_False;
|
||||
return ProfileOK;
|
||||
@ -1504,7 +1504,7 @@ Standard_Boolean BRepFeat_RibSlot::SlidingProfile(TopoDS_Face& Prof,
|
||||
|
||||
if (!BRepAlgo::IsValid(fac)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Invalid Face" << endl;
|
||||
if (trc) std::cout << " Invalid Face" << std::endl;
|
||||
#endif
|
||||
ProfileOK = Standard_False;
|
||||
return ProfileOK;
|
||||
@ -1538,7 +1538,7 @@ Standard_Boolean BRepFeat_RibSlot::SlidingProfile(TopoDS_Face& Prof,
|
||||
|
||||
if (!BRepAlgo::IsValid(Prof)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Invalid Face Profile" << endl;
|
||||
if (trc) std::cout << " Invalid Face Profile" << std::endl;
|
||||
#endif
|
||||
ProfileOK = Standard_False;
|
||||
return ProfileOK;
|
||||
@ -1570,7 +1570,7 @@ Standard_Boolean BRepFeat_RibSlot::NoSlidingProfile(TopoDS_Face& Prof,
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Boolean trc = BRepFeat_GettraceFEAT();
|
||||
if (trc) cout << "BRepFeat_RibSlot::NoSlidingProfile" << endl;
|
||||
if (trc) std::cout << "BRepFeat_RibSlot::NoSlidingProfile" << std::endl;
|
||||
#endif
|
||||
Standard_Boolean ProfileOK = Standard_True;
|
||||
|
||||
@ -1707,7 +1707,7 @@ Standard_Boolean BRepFeat_RibSlot::NoSlidingProfile(TopoDS_Face& Prof,
|
||||
|
||||
if(BndEdge1.IsNull() || BndEdge2.IsNull()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Null bounding edge" << endl;
|
||||
if (trc) std::cout << " Null bounding edge" << std::endl;
|
||||
#endif
|
||||
ProfileOK = Standard_False;
|
||||
return ProfileOK;
|
||||
@ -2197,7 +2197,7 @@ Standard_Boolean BRepFeat_RibSlot::NoSlidingProfile(TopoDS_Face& Prof,
|
||||
|
||||
if (!BRepAlgo::IsValid(fac)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Invalid Face" << endl;
|
||||
if (trc) std::cout << " Invalid Face" << std::endl;
|
||||
#endif
|
||||
ProfileOK = Standard_False;
|
||||
return ProfileOK;
|
||||
@ -2227,7 +2227,7 @@ Standard_Boolean BRepFeat_RibSlot::NoSlidingProfile(TopoDS_Face& Prof,
|
||||
|
||||
if (!BRepAlgo::IsValid(Prof)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
if (trc) cout << " Invalid Face Profile" << endl;
|
||||
if (trc) std::cout << " Invalid Face Profile" << std::endl;
|
||||
#endif
|
||||
ProfileOK = Standard_False;
|
||||
return ProfileOK;
|
||||
|
@ -53,7 +53,7 @@ Standard_EXPORT void BRepFeat_SetcontextCHRONO(const Standard_Boolean b)
|
||||
{ BRepFeat_contextCHRONO = b; }
|
||||
Standard_EXPORT Standard_Boolean BRepFeat_GetcontextCHRONO() {
|
||||
Standard_Boolean b = BRepFeat_contextCHRONO;
|
||||
if (b) cout<<"context (BRepFeat) CHRONO actif"<<endl;
|
||||
if (b) std::cout<<"context (BRepFeat) CHRONO actif"<<std::endl;
|
||||
return b;
|
||||
}
|
||||
|
||||
|
@ -861,7 +861,7 @@ void BRepFill::SearchOrigin(TopoDS_Wire & W,
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else {
|
||||
cout << "BRepFill::SearchOrigine : Echec Distance" << endl;
|
||||
std::cout << "BRepFill::SearchOrigine : Echec Distance" << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -99,9 +99,9 @@ void BRepFill_ApproxSeewing::Perform(const BRepFill_MultiLine& ML)
|
||||
|
||||
#ifdef DUMP_ML
|
||||
i = 1;
|
||||
cout << "--Point " << i << endl;
|
||||
cout << "P3d: " << P3d.X() << " " << P3d.Y() << " " << P3d.Z() << endl;
|
||||
cout << "P2d1;2: " << PF1.X() << " " << PF1.Y() << " ; " << PF2.X() << " " << PF2.Y() << endl;
|
||||
std::cout << "--Point " << i << std::endl;
|
||||
std::cout << "P3d: " << P3d.X() << " " << P3d.Y() << " " << P3d.Z() << std::endl;
|
||||
std::cout << "P2d1;2: " << PF1.X() << " " << PF1.Y() << " ; " << PF2.X() << " " << PF2.Y() << std::endl;
|
||||
#endif
|
||||
|
||||
|
||||
@ -116,9 +116,9 @@ void BRepFill_ApproxSeewing::Perform(const BRepFill_MultiLine& ML)
|
||||
AppDef_MultiPointConstraint MPC( 1, 2);
|
||||
ML.Value3dOnF1OnF2(U,P3d,PF1,PF2);
|
||||
#ifdef DUMP_ML
|
||||
cout << "--Point " << i << endl;
|
||||
cout << "P3d: " << P3d.X() << " " << P3d.Y() << " " << P3d.Z() << endl;
|
||||
cout << "P2d1;2: " << PF1.X() << " " << PF1.Y() << " ; " << PF2.X() << " " << PF2.Y() << endl;
|
||||
std::cout << "--Point " << i << std::endl;
|
||||
std::cout << "P3d: " << P3d.X() << " " << P3d.Y() << " " << P3d.Z() << std::endl;
|
||||
std::cout << "P2d1;2: " << PF1.X() << " " << PF1.Y() << " ; " << PF2.X() << " " << PF2.Y() << std::endl;
|
||||
#endif
|
||||
MPC.SetPoint (1, P3d);
|
||||
MPC.SetPoint2d(2, PF1);
|
||||
@ -130,9 +130,9 @@ void BRepFill_ApproxSeewing::Perform(const BRepFill_MultiLine& ML)
|
||||
ML.Value3dOnF1OnF2(U2,P3d,PF1,PF2);
|
||||
#ifdef DUMP_ML
|
||||
i = NbPoints;
|
||||
cout << "--Point " << i << endl;
|
||||
cout << "P3d: " << P3d.X() << " " << P3d.Y() << " " << P3d.Z() << endl;
|
||||
cout << "P2d1;2: " << PF1.X() << " " << PF1.Y() << " ; " << PF2.X() << " " << PF2.Y() << endl;
|
||||
std::cout << "--Point " << i << std::endl;
|
||||
std::cout << "P3d: " << P3d.X() << " " << P3d.Y() << " " << P3d.Z() << std::endl;
|
||||
std::cout << "P2d1;2: " << PF1.X() << " " << PF1.Y() << " ; " << PF2.X() << " " << PF2.Y() << std::endl;
|
||||
#endif
|
||||
MPE.SetPoint (1, P3d);
|
||||
MPE.SetPoint2d(2, PF1);
|
||||
@ -146,7 +146,7 @@ void BRepFill_ApproxSeewing::Perform(const BRepFill_MultiLine& ML)
|
||||
|
||||
if ( NbCurves == 0) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " TrimSurfaceTool : Approx echoue, on met les polygones" << endl;
|
||||
std::cout << " TrimSurfaceTool : Approx echoue, on met les polygones" << std::endl;
|
||||
#endif
|
||||
|
||||
TColStd_Array1OfReal Knots(1,NbPoints);
|
||||
|
@ -263,14 +263,14 @@ static Standard_Boolean GoodOrientation(const Bnd_Box& B,
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Error in MakeWire" << endl;
|
||||
std::cout << "Error in MakeWire" << std::endl;
|
||||
#endif
|
||||
throw Standard_ConstructionError("BRepFill_Draft");
|
||||
}
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "No Free Borders !" << endl;
|
||||
std::cout << "No Free Borders !" << std::endl;
|
||||
#endif
|
||||
throw Standard_ConstructionError("BRepFill_Draft");
|
||||
}
|
||||
@ -899,7 +899,7 @@ static Standard_Boolean GoodOrientation(const Bnd_Box& B,
|
||||
}
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else cout << "Draft : No assembly !" << endl;
|
||||
else std::cout << "Draft : No assembly !" << std::endl;
|
||||
#endif
|
||||
return Ok;
|
||||
}
|
||||
|
@ -747,7 +747,7 @@ void BRepFill_Evolved::ElementaryPerform (const TopoDS_Face& Sp,
|
||||
|
||||
#ifdef DRAW
|
||||
if (AffichEdge) {
|
||||
cout << " End Construction of geometric primitives"<<endl;
|
||||
std::cout << " End Construction of geometric primitives"<<std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -1056,7 +1056,7 @@ void BRepFill_Evolved::ElementaryPerform (const TopoDS_Face& Sp,
|
||||
|
||||
#ifdef DRAW
|
||||
if (AffichEdge) {
|
||||
cout << " End of Construction of edges and vertices on bissectrices"<<endl;
|
||||
std::cout << " End of Construction of edges and vertices on bissectrices"<<std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -1169,7 +1169,7 @@ void BRepFill_Evolved::ElementaryPerform (const TopoDS_Face& Sp,
|
||||
|
||||
#ifdef DRAW
|
||||
if (AffichEdge) {
|
||||
cout <<" End Construction of parallel edges "<<endl;
|
||||
std::cout <<" End Construction of parallel edges "<<std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -1240,7 +1240,7 @@ void BRepFill_Evolved::ElementaryPerform (const TopoDS_Face& Sp,
|
||||
|
||||
#ifdef DRAW
|
||||
if (AffichEdge) {
|
||||
cout <<" End of construction of an elementary volevo."<<endl;
|
||||
std::cout <<" End of construction of an elementary volevo."<<std::endl;
|
||||
char name[100];
|
||||
sprintf(name,"VEVO_%d",++NbVEVOS);
|
||||
DBRep::Set(name,myShape);
|
||||
@ -2598,8 +2598,8 @@ void TrimFace(const TopoDS_Face& Face,
|
||||
Standard_Integer NB = TheEdges.Length();
|
||||
if ( AffichEdge) {
|
||||
char name[100];
|
||||
cout << " TrimFace " << ++NbTRIMFACES;
|
||||
cout << " : " << NB << " edges within the restriction" << endl;
|
||||
std::cout << " TrimFace " << ++NbTRIMFACES;
|
||||
std::cout << " : " << NB << " edges within the restriction" << std::endl;
|
||||
for ( Standard_Integer j = 1; j <= NB; j++) {
|
||||
sprintf(name,"TRIMEDGE_%d_%d",NbTRIMFACES,j);
|
||||
DBRep::Set(name,TopoDS::Edge(TheEdges.Value(j)));
|
||||
|
@ -673,7 +673,7 @@ void BRepFill_Filling::Build()
|
||||
{
|
||||
GeomPlate_MakeApprox Approx( GPlate, myTol3d, myMaxSegments, myMaxDeg, dmax, 0 ); //?????????????
|
||||
//GeomConvert_ApproxSurface Approx( GPlate, myTol3d, GeomAbs_C1, GeomAbs_C1, myMaxDeg, myMaxDeg, myMaxSegments, 1 );
|
||||
//Approx.Dump( cout );
|
||||
//Approx.Dump( std::cout );
|
||||
Surface = Approx.Surface();
|
||||
}
|
||||
|
||||
|
@ -183,13 +183,13 @@ void BRepFill_LocationLaw::BiNormalIsMain()
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if (N2.Dot(T1) > 1.e-9) {
|
||||
cout << "Inprecision in TransformInCompatibleLaw" << endl;
|
||||
cout << "--- T1.R(N2) = " << N2.Dot(T1) << endl;
|
||||
std::cout << "Inprecision in TransformInCompatibleLaw" << std::endl;
|
||||
std::cout << "--- T1.R(N2) = " << N2.Dot(T1) << std::endl;
|
||||
gp_Vec tt;
|
||||
tt = T1;
|
||||
tt.Rotate(axe, alpha);
|
||||
cout << "--- T1.R(T2) = " << tt.Dot(T1) << endl;
|
||||
cout << "--- R(N2).R(T2) = " << N2.Dot(tt) << endl;
|
||||
std::cout << "--- T1.R(T2) = " << tt.Dot(T1) << std::endl;
|
||||
std::cout << "--- R(N2).R(T2) = " << N2.Dot(tt) << std::endl;
|
||||
}
|
||||
#endif
|
||||
Angle = N2.AngleWithRef(N1, T1);
|
||||
@ -620,8 +620,8 @@ void BRepFill_LocationLaw::CurvilinearBounds(const Standard_Integer Index,
|
||||
else {
|
||||
W.Nullify();
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BRepFill_LocationLaw::D0 : Attention position out of limits"
|
||||
<< endl;
|
||||
std::cout << "BRepFill_LocationLaw::D0 : Attention position out of limits"
|
||||
<< std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -612,8 +612,8 @@ static gp_Pnt2d ValueOnFace(const Standard_Real U,
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "MultiLine : D1 = D2 and the Curve is not a circle" << endl;
|
||||
cout << " ---> ValueOnFace failed at parameter U = " << U << endl;
|
||||
std::cout << "MultiLine : D1 = D2 and the Curve is not a circle" << std::endl;
|
||||
std::cout << " ---> ValueOnFace failed at parameter U = " << U << std::endl;
|
||||
#endif
|
||||
throw Standard_ConstructionError("BRepFill_MultiLine: ValueOnFace");
|
||||
}
|
||||
@ -665,8 +665,8 @@ static gp_Pnt2d ValueOnFace(const Standard_Real U,
|
||||
|
||||
if ( !Intersector.IsDone()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Intersector not done" << endl;
|
||||
cout << " ---> ValueonFace failed at parameter U = " << U << endl;
|
||||
std::cout << "Intersector not done" << std::endl;
|
||||
std::cout << " ---> ValueonFace failed at parameter U = " << U << std::endl;
|
||||
#endif
|
||||
return gp_Pnt2d(0.,0.);
|
||||
}
|
||||
@ -685,8 +685,8 @@ static gp_Pnt2d ValueOnFace(const Standard_Real U,
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Intersector done, but no points found" << endl;
|
||||
cout << " ---> ValueonFace failed at parameter U = " << U << endl;
|
||||
std::cout << "Intersector done, but no points found" << std::endl;
|
||||
std::cout << " ---> ValueonFace failed at parameter U = " << U << std::endl;
|
||||
#endif
|
||||
if (Abs(Dist - PL.Y()) < Abs(Dist - PF.Y()))
|
||||
VV = TheV.LastParameter();
|
||||
|
@ -521,7 +521,7 @@ void BRepFill_OffsetWire::Perform (const Standard_Real Offset,
|
||||
if(!BadEdges.IsEmpty())
|
||||
{
|
||||
// Modification of myWorkSpine;
|
||||
//cout << "Modification of myWorkSpine : " << BadEdges.Extent() << endl;
|
||||
//std::cout << "Modification of myWorkSpine : " << BadEdges.Extent() << std::endl;
|
||||
BRepTools_Substitution aSubst;
|
||||
TopTools_ListIteratorOfListOfShape it(BadEdges);
|
||||
TopTools_ListOfShape aL;
|
||||
@ -548,7 +548,7 @@ void BRepFill_OffsetWire::Perform (const Standard_Real Offset,
|
||||
Standard_Integer NPnts = Points.Length();
|
||||
if(NPnts > 2)
|
||||
{
|
||||
//cout << NPnts << " points " << endl;
|
||||
//std::cout << NPnts << " points " << std::endl;
|
||||
TopoDS_Vertex FV = Vf;
|
||||
TopoDS_Vertex LV;
|
||||
TopoDS_Edge newE;
|
||||
@ -566,7 +566,7 @@ void BRepFill_OffsetWire::Perform (const Standard_Real Offset,
|
||||
}
|
||||
else
|
||||
{
|
||||
//cout << " 2 points " << endl;
|
||||
//std::cout << " 2 points " << std::endl;
|
||||
TopoDS_Edge newE = BRepLib_MakeEdge(Vf, Vl);
|
||||
aL.Append(newE);
|
||||
}
|
||||
@ -642,9 +642,9 @@ void BRepFill_OffsetWire::Perform (const Standard_Real Offset,
|
||||
}
|
||||
catch (Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"An exception was caught in BRepFill_OffsetWire::Perform : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"An exception was caught in BRepFill_OffsetWire::Perform : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
myShape.Nullify();
|
||||
@ -831,7 +831,7 @@ void BRepFill_OffsetWire::PerformWithBiLo
|
||||
#ifdef OCCT_DEBUG
|
||||
#ifdef DRAW
|
||||
if (AffichEdge) {
|
||||
cout << " End Construction of geometric primitives "<<endl;
|
||||
std::cout << " End Construction of geometric primitives "<<std::endl;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
@ -1019,7 +1019,7 @@ void BRepFill_OffsetWire::PerformWithBiLo
|
||||
#ifdef OCCT_DEBUG
|
||||
#ifdef DRAW
|
||||
if (AffichEdge) {
|
||||
cout << " End Construction of vertices on offsets"<<endl;
|
||||
std::cout << " End Construction of vertices on offsets"<<std::endl;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
@ -1469,7 +1469,7 @@ void BRepFill_OffsetWire::MakeWires()
|
||||
|
||||
if (!End) {
|
||||
if (MVE.FindFromKey(CV).Extent() > 2) {
|
||||
//cout <<"vertex on more that 2 edges in a face."<<endl;
|
||||
//std::cout <<"vertex on more that 2 edges in a face."<<std::endl;
|
||||
}
|
||||
for ( itl.Initialize(MVE.FindFromKey(CV)); itl.More(); itl.Next()) {
|
||||
if (itl.Value().IsSame(CE)) {
|
||||
@ -2521,7 +2521,7 @@ static void CheckBadEdges(const TopoDS_Face& Spine, const Standard_Real Offset,
|
||||
|
||||
|
||||
if (aMap.Contains(SE)) {
|
||||
//cout << "Edge is treated second time" << endl;
|
||||
//std::cout << "Edge is treated second time" << std::endl;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -300,8 +300,8 @@ BRepFill_SectionPlacement(const Handle(BRepFill_LocationLaw)& Law,
|
||||
if (myDebug) {
|
||||
gp_Pnt P_Path;
|
||||
P_Path = adpPath->Value(theParam);
|
||||
cout << "Point on Path" << P_Path.X() << ", "
|
||||
<< P_Path.Y() << ", " << P_Path.Z() << ", " << endl;
|
||||
std::cout << "Point on Path" << P_Path.X() << ", "
|
||||
<< P_Path.Y() << ", " << P_Path.Z() << ", " << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -179,7 +179,7 @@ void BRepFill_ShapeLaw::Init(const Standard_Boolean Build)
|
||||
}
|
||||
}
|
||||
|
||||
// cout << "new law" << endl;
|
||||
// std::cout << "new law" << std::endl;
|
||||
|
||||
// Is the law closed by U ?
|
||||
uclosed = W.Closed();
|
||||
@ -372,8 +372,8 @@ void BRepFill_ShapeLaw::Init(const Standard_Boolean Build)
|
||||
Standard_True, Standard_False, 20);
|
||||
#ifdef OCCT_DEBUG
|
||||
if (!Bof)
|
||||
cout << "BRepFill_ShapeLaw::ConcatenedLaw INCOMPLET !!!"
|
||||
<< endl;
|
||||
std::cout << "BRepFill_ShapeLaw::ConcatenedLaw INCOMPLET !!!"
|
||||
<< std::endl;
|
||||
#endif
|
||||
}
|
||||
Composite = Concat.BSplineCurve();
|
||||
|
@ -347,7 +347,7 @@ static Standard_Boolean SameParameter(TopoDS_Edge& E,
|
||||
if(sp.IsDone() && !sp.IsSameParameter()) Pcurv = sp.Curve2d();
|
||||
else if(!sp.IsDone() && !sp.IsSameParameter()){
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"echec SameParameter"<<endl;
|
||||
std::cout<<"echec SameParameter"<<std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -355,8 +355,8 @@ static Standard_Boolean SameParameter(TopoDS_Edge& E,
|
||||
ResTol = sp.TolReached();
|
||||
if(ResTol > tolreached ){
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"SameParameter : Tolerance not reached!"<<endl;
|
||||
cout<<"tol visee : "<<tol3d<<" tol obtained : "<<ResTol<<endl;
|
||||
std::cout<<"SameParameter : Tolerance not reached!"<<std::endl;
|
||||
std::cout<<"tol visee : "<<tol3d<<" tol obtained : "<<ResTol<<std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
@ -647,7 +647,7 @@ static void BuildFace(const Handle(Geom_Surface)& S,
|
||||
if (MkF.Error() != BRepLib_FaceDone) {
|
||||
#ifdef OCCT_DEBUG
|
||||
BRepLib_FaceError Err = MkF.Error();
|
||||
cout << "Planar Face Error :" << Err << endl;
|
||||
std::cout << "Planar Face Error :" << Err << std::endl;
|
||||
#endif
|
||||
}
|
||||
else {
|
||||
@ -1110,13 +1110,13 @@ static Standard_Boolean Filling(const TopoDS_Shape& EF,
|
||||
8, 8, 2*NbInt, 0);
|
||||
if (!App.HasResult()) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Filling_Approx : Pas de resultat" << endl;
|
||||
std::cout << "Filling_Approx : Pas de resultat" << std::endl;
|
||||
#endif
|
||||
return Standard_False;
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Filling_Approx Error 3d = " <<
|
||||
App.MaxError() << endl;
|
||||
std::cout << "Filling_Approx Error 3d = " <<
|
||||
App.MaxError() << std::endl;
|
||||
#endif
|
||||
Surf = App.Surface();
|
||||
Tol3d = App.MaxError();
|
||||
@ -1331,7 +1331,7 @@ static void SetCommonEdgeInFace(BRepTools_Substitution& aSubstitute,
|
||||
}
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
if (!done) cout << "Substitution of Edge failed" << endl;
|
||||
if (!done) std::cout << "Substitution of Edge failed" << std::endl;
|
||||
#endif
|
||||
}
|
||||
*/
|
||||
@ -1884,7 +1884,7 @@ BRepFill_Sweep::BRepFill_Sweep(const Handle(BRepFill_SectionLaw)& Section,
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if (!issame)
|
||||
cout<<"Sweep Warning : Edge not SameRange in the limits"<<endl;
|
||||
std::cout<<"Sweep Warning : Edge not SameRange in the limits"<<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -2564,7 +2564,7 @@ BRepFill_Sweep::BRepFill_Sweep(const Handle(BRepFill_SectionLaw)& Section,
|
||||
}
|
||||
if (Degenerated(isec, ipath)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Sweep : Degenerated case" << endl;
|
||||
std::cout << "Sweep : Degenerated case" << std::endl;
|
||||
#endif
|
||||
hasdegen = Standard_True;
|
||||
// Particular construction of edges
|
||||
@ -3223,7 +3223,7 @@ TopoDS_Shape BRepFill_Sweep::Tape(const Standard_Integer Index) const
|
||||
|
||||
if (t1.Angle(t2) < myAngMin) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BRepFill_Sweep::PerformCorner : This is not a corner !" << endl;
|
||||
std::cout << "BRepFill_Sweep::PerformCorner : This is not a corner !" << std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
@ -3333,7 +3333,7 @@ TopoDS_Shape BRepFill_Sweep::Tape(const Standard_Integer Index) const
|
||||
else if ((TheTransition == BRepFill_Right) ||
|
||||
aTrim.HasSection() ) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Fail of TrimCorner" << endl;
|
||||
std::cout << "Fail of TrimCorner" << std::endl;
|
||||
#endif
|
||||
return; // Nothing is touched
|
||||
}
|
||||
@ -3411,7 +3411,7 @@ TopoDS_Shape BRepFill_Sweep::Tape(const Standard_Integer Index) const
|
||||
}
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else cout << "PerformCorner : Unsymmetry of free border" << endl;
|
||||
else std::cout << "PerformCorner : Unsymmetry of free border" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -442,7 +442,7 @@ void BRepFill_TrimEdgeTool::IntersectWith(const TopoDS_Edge& Edge1,
|
||||
(Points2.Length() == 0 && Params.Length() == 0) ) ) {
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BRepFill_TrimEdgeTool: incoherent intersection. Try with a greater tolerance" << endl;
|
||||
std::cout << "BRepFill_TrimEdgeTool: incoherent intersection. Try with a greater tolerance" << std::endl;
|
||||
#endif
|
||||
|
||||
Params.Clear();
|
||||
@ -456,16 +456,16 @@ void BRepFill_TrimEdgeTool::IntersectWith(const TopoDS_Edge& Edge1,
|
||||
}
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if(SeanceDeRattrapage != 0) cout << "SeanceDeRattrapage = " << SeanceDeRattrapage << endl;
|
||||
if(SeanceDeRattrapage != 0) std::cout << "SeanceDeRattrapage = " << SeanceDeRattrapage << std::endl;
|
||||
if(SeanceDeRattrapage == nn) {
|
||||
cout << "BRepFill_TrimEdgeTool: incoherent intersection" << endl;
|
||||
std::cout << "BRepFill_TrimEdgeTool: incoherent intersection" << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
if(Params.Length() == 0 && Points2.Length() == 1) {
|
||||
|
||||
//cout << "Params.Length() == 0 && Points2.Length() == 1" << endl;
|
||||
//std::cout << "Params.Length() == 0 && Points2.Length() == 1" << std::endl;
|
||||
Standard_Real dmin, dmax = 0.25*myOffset*myOffset;
|
||||
Standard_Real tBis = Points2(1).X();
|
||||
gp_Pnt2d PBis = myBis.Value(tBis);
|
||||
@ -492,7 +492,7 @@ void BRepFill_TrimEdgeTool::IntersectWith(const TopoDS_Edge& Edge1,
|
||||
}
|
||||
else if(Params.Length() == 1 && Points2.Length() == 0) {
|
||||
|
||||
//cout << "Params.Length() == 1 && Points2.Length() == 0" << endl;
|
||||
//std::cout << "Params.Length() == 1 && Points2.Length() == 0" << std::endl;
|
||||
Standard_Real dmin, dmax = 0.25*myOffset*myOffset;
|
||||
Standard_Real tBis = Params(1).X();
|
||||
gp_Pnt2d PBis = myBis.Value(tBis);
|
||||
@ -529,7 +529,7 @@ void BRepFill_TrimEdgeTool::IntersectWith(const TopoDS_Edge& Edge1,
|
||||
Standard_Integer NbPoints = Params.Length();
|
||||
|
||||
if(NbPoints == 1 && Points2.Length() == 1) {
|
||||
//cout << "NbPoints == 1 && Points2.Length() == 1" << endl;
|
||||
//std::cout << "NbPoints == 1 && Points2.Length() == 1" << std::endl;
|
||||
for ( i = 1; i <= NbPoints; i++) {
|
||||
PSeq = Params(i);
|
||||
PSeq.SetZ((Points2.Value(i)).Y());
|
||||
@ -546,11 +546,11 @@ void BRepFill_TrimEdgeTool::IntersectWith(const TopoDS_Edge& Edge1,
|
||||
|
||||
if ( P1xP2x > Tol ) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BRepFill_TrimEdgeTool: no same parameter on the bissectrice" << endl;
|
||||
std::cout << "BRepFill_TrimEdgeTool: no same parameter on the bissectrice" << std::endl;
|
||||
#endif
|
||||
if(P1xP2x>TolInit) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BRepFill_TrimEdgeTool: Continue somehow" << endl;
|
||||
std::cout << "BRepFill_TrimEdgeTool: Continue somehow" << std::endl;
|
||||
#endif
|
||||
i++;
|
||||
}
|
||||
@ -690,7 +690,7 @@ void BRepFill_TrimEdgeTool::AddOrConfuse(const Standard_Boolean Start,
|
||||
|
||||
if (ToProj) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " project extremity bissectrice on parallel."<<endl;
|
||||
std::cout << " project extremity bissectrice on parallel."<<std::endl;
|
||||
#endif
|
||||
|
||||
// Project point on parallels and add in Params
|
||||
@ -704,25 +704,25 @@ void BRepFill_TrimEdgeTool::AddOrConfuse(const Standard_Boolean Start,
|
||||
|
||||
if (Projector1.NbPoints() == 0) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Failed projection in BRepFill_TrimEdgeTool::AddOrConfuse"<<endl;
|
||||
std::cout << "Failed projection in BRepFill_TrimEdgeTool::AddOrConfuse"<<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
if (!Projector1.NearestPoint().IsEqual(PBis,Tol)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout <<"Incorrect solution in BRepFill_TrimEdgeTool::AddOrConfuse"<<endl;
|
||||
std::cout <<"Incorrect solution in BRepFill_TrimEdgeTool::AddOrConfuse"<<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
if (Projector2.NbPoints() == 0) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Failed projection in BRepFill_TrimEdgeTool::AddOrConfuse"<<endl;
|
||||
std::cout << "Failed projection in BRepFill_TrimEdgeTool::AddOrConfuse"<<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
if (!Projector2.NearestPoint().IsEqual(PBis,Tol)) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout <<" Mauvaisesolution dans BRepFill_TrimEdgeTool::AddOrConfuse"<<endl;
|
||||
std::cout <<" Mauvaisesolution dans BRepFill_TrimEdgeTool::AddOrConfuse"<<std::endl;
|
||||
#endif
|
||||
return;
|
||||
}
|
||||
|
@ -103,7 +103,7 @@ myFace1(Face1),
|
||||
#ifdef OCCT_DEBUG
|
||||
if ( Affich) {
|
||||
NBCALL++;
|
||||
cout << " ---------->TrimSurfaceTool : NBCALL = " << NBCALL << endl;
|
||||
std::cout << " ---------->TrimSurfaceTool : NBCALL = " << NBCALL << std::endl;
|
||||
#ifdef DRAW
|
||||
char name[256];
|
||||
|
||||
@ -279,8 +279,8 @@ static void EvalParameters(const TopoDS_Edge& Edge,
|
||||
|
||||
if (NbSegments > 0) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " IntersectWith : " << NbSegments
|
||||
<< " Segments of intersection" << endl;
|
||||
std::cout << " IntersectWith : " << NbSegments
|
||||
<< " Segments of intersection" << std::endl;
|
||||
#endif
|
||||
IntRes2d_IntersectionSegment Seg;
|
||||
for ( Standard_Integer i = 1; i <= NbSegments; i++) {
|
||||
@ -305,7 +305,7 @@ static void EvalParameters(const TopoDS_Edge& Edge,
|
||||
P1 = Seq.Value(i);
|
||||
P2 = Seq.Value(i+1);
|
||||
if ( P2.X()-P1.X() < Tol ) {
|
||||
// cout<<"REMOVE "<<P1.X()<<endl;
|
||||
// std::cout<<"REMOVE "<<P1.X()<<std::endl;
|
||||
Seq.Remove(i--);
|
||||
NbPoints--;
|
||||
}
|
||||
@ -432,7 +432,7 @@ void BRepFill_TrimSurfaceTool::IntersectWith
|
||||
PSeq = Points(i);
|
||||
PSeq.SetZ((Points2.Value(i)).Y());
|
||||
Points.SetValue(i,PSeq);
|
||||
// cout<<"BisPar "<<PSeq.X()<<endl;
|
||||
// std::cout<<"BisPar "<<PSeq.X()<<std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -488,9 +488,9 @@ Standard_Real BRepFill_TrimSurfaceTool::ProjOn(const gp_Pnt2d& Point,
|
||||
#ifdef OCCT_DEBUG
|
||||
Standard_Real Dist = Projector.LowerDistance();
|
||||
if ( Dist > Precision::Confusion() ) {
|
||||
cout << " *** WARNING TrimSurfaceTool: *** " << endl;
|
||||
cout << " --> the point is not on the edge" <<endl;
|
||||
cout << " distance = " << Dist << endl;
|
||||
std::cout << " *** WARNING TrimSurfaceTool: *** " << std::endl;
|
||||
std::cout << " --> the point is not on the edge" <<std::endl;
|
||||
std::cout << " distance = " << Dist << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -186,12 +186,12 @@ static Standard_Real surfaceProperties(const TopoDS_Shape& S, GProp_GProps& Prop
|
||||
}
|
||||
Props.Add(G);
|
||||
#ifdef OCCT_DEBUG
|
||||
if(AffichEps) cout<<"\n"<<i<<":\tEpsArea = "<< G.GetEpsilon();
|
||||
if(AffichEps) std::cout<<"\n"<<i<<":\tEpsArea = "<< G.GetEpsilon();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
if(AffichEps) cout<<"\n-----------------\n"<<iErrorMax<<":\tMaxError = "<<ErrorMax<<"\n";
|
||||
if(AffichEps) std::cout<<"\n-----------------\n"<<iErrorMax<<":\tMaxError = "<<ErrorMax<<"\n";
|
||||
#endif
|
||||
return ErrorMax;
|
||||
}
|
||||
@ -300,13 +300,13 @@ static Standard_Real volumeProperties(const TopoDS_Shape& S, GProp_GProps& Props
|
||||
}
|
||||
Props.Add(G);
|
||||
#ifdef OCCT_DEBUG
|
||||
if(AffichEps) cout<<"\n"<<i<<":\tEpsVolume = "<< G.GetEpsilon();
|
||||
if(AffichEps) std::cout<<"\n"<<i<<":\tEpsVolume = "<< G.GetEpsilon();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
if(AffichEps) cout<<"\n-----------------\n"<<iErrorMax<<":\tMaxError = "<<ErrorMax<<"\n";
|
||||
if(AffichEps) std::cout<<"\n-----------------\n"<<iErrorMax<<":\tMaxError = "<<ErrorMax<<"\n";
|
||||
#endif
|
||||
return ErrorMax;
|
||||
}
|
||||
@ -367,7 +367,7 @@ Standard_Real BRepGProp::VolumeProperties(const TopoDS_Shape& S, GProp_GProps& P
|
||||
}
|
||||
} else ErrorMax = volumeProperties(S,Props,Eps,SkipShared, Standard_False);
|
||||
#ifdef OCCT_DEBUG
|
||||
if(AffichEps) cout<<"\n\n==================="<<iErrorMax<<":\tMaxEpsVolume = "<<ErrorMax<<"\n";
|
||||
if(AffichEps) std::cout<<"\n\n==================="<<iErrorMax<<":\tMaxEpsVolume = "<<ErrorMax<<"\n";
|
||||
#endif
|
||||
return ErrorMax;
|
||||
}
|
||||
|
@ -149,7 +149,7 @@ Standard_Boolean BRepGProp_TFunction::Value(const Standard_Real X,
|
||||
|
||||
F += anIntegral.Value();
|
||||
aLocalErr += anIntegral.AbsolutError();
|
||||
//cout << " TFunction : " << anIntegral.NbIterReached() << " " << anIntegral.AbsolutError() << endl;
|
||||
//std::cout << " TFunction : " << anIntegral.NbIterReached() << " " << anIntegral.AbsolutError() << std::endl;
|
||||
}
|
||||
|
||||
F *= aCoeff;
|
||||
|
@ -403,7 +403,7 @@ Standard_Real BRepGProp_VinertGK::PrivatePerform
|
||||
Standard_Real err1 = 0.;
|
||||
while (i < iU) {
|
||||
|
||||
//cout << "-------------- Span " << i << " nbp: " << aNbPnts << endl;
|
||||
//std::cout << "-------------- Span " << i << " nbp: " << aNbPnts << std::endl;
|
||||
Standard_Real aT1 = aTKnots->Value(i++);
|
||||
Standard_Real aT2 = aTKnots->Value(i);
|
||||
|
||||
@ -422,9 +422,9 @@ Standard_Real BRepGProp_VinertGK::PrivatePerform
|
||||
|
||||
aLocalValue(k) += anIntegral.Value();
|
||||
err1 = aTFunc.AbsolutError()*(aT2 - aT1);
|
||||
//cout << "Errors: " << anIntegral.NbIterReached() << " " << anIntegral.AbsolutError() << " " << err1 << endl;
|
||||
//std::cout << "Errors: " << anIntegral.NbIterReached() << " " << anIntegral.AbsolutError() << " " << err1 << std::endl;
|
||||
aLocalTolReached(k) += anIntegral.AbsolutError() + err1;
|
||||
//cout << "--- Errors: " << anIntegral.NbIterReached() << " " << anIntegral.AbsolutError() << " " << err1 << endl;
|
||||
//std::cout << "--- Errors: " << anIntegral.NbIterReached() << " " << anIntegral.AbsolutError() << " " << err1 << std::endl;
|
||||
}
|
||||
|
||||
aValue(k) += aLocalValue(k);
|
||||
|
@ -2233,9 +2233,9 @@ static void EncodeRegularity(const TopoDS_Shape& theShape,
|
||||
}
|
||||
catch (Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Warning: Exception in BRepLib::EncodeRegularity(): ";
|
||||
anException.Print(cout);
|
||||
cout << endl;
|
||||
std::cout << "Warning: Exception in BRepLib::EncodeRegularity(): ";
|
||||
anException.Print(std::cout);
|
||||
std::cout << std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
}
|
||||
@ -2300,7 +2300,7 @@ void BRepLib::EncodeRegularity(TopoDS_Edge& E,
|
||||
catch(Standard_Failure const&)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Failure: Exception in BRepLib::EncodeRegularity" << endl;
|
||||
std::cout << "Failure: Exception in BRepLib::EncodeRegularity" << std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -2351,7 +2351,7 @@ Standard_Boolean BRepLib::
|
||||
if(!aSLP.IsNormalDefined())
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "BRepLib::EnsureNormalConsistency(): Cannot find normal!" << endl;
|
||||
std::cout << "BRepLib::EnsureNormalConsistency(): Cannot find normal!" << std::endl;
|
||||
#endif
|
||||
}
|
||||
else
|
||||
|
@ -357,7 +357,7 @@ void BRepLib_MakeWire::Add(const TopoDS_Edge& E, Standard_Boolean IsCheckGeomet
|
||||
else if (V2.IsSame(myVertex)) VRef = V1;
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "MakeWire : There is a PROBLEM !!" << endl;
|
||||
std::cout << "MakeWire : There is a PROBLEM !!" << std::endl;
|
||||
#endif
|
||||
myError = BRepLib_NonManifoldWire;
|
||||
}
|
||||
@ -366,7 +366,7 @@ void BRepLib_MakeWire::Add(const TopoDS_Edge& E, Standard_Boolean IsCheckGeomet
|
||||
// Particular case: it is required to control the orientation
|
||||
#ifdef OCCT_DEBUG
|
||||
if (!VF.IsSame(myVertex))
|
||||
cout << "MakeWire : There is a PROBLEM !!" << endl;
|
||||
std::cout << "MakeWire : There is a PROBLEM !!" << std::endl;
|
||||
#endif
|
||||
|
||||
}
|
||||
@ -375,7 +375,7 @@ void BRepLib_MakeWire::Add(const TopoDS_Edge& E, Standard_Boolean IsCheckGeomet
|
||||
else if (VL.IsSame(myVertex)) VL = VRef;
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "MakeWire : Y A UN PROBLEME !!" << endl;
|
||||
std::cout << "MakeWire : Y A UN PROBLEME !!" << std::endl;
|
||||
#endif
|
||||
myError = BRepLib_NonManifoldWire;
|
||||
}
|
||||
|
@ -472,14 +472,14 @@ void BRepMesh_DataStructureOfDelaun::Statistics(Standard_OStream& theStream) con
|
||||
{
|
||||
theStream << " Map of nodes : \n";
|
||||
myNodes->Statistics(theStream);
|
||||
theStream << "\n Deleted nodes : " << myNodes->GetListOfDelNodes().Extent() << endl;
|
||||
theStream << "\n Deleted nodes : " << myNodes->GetListOfDelNodes().Extent() << std::endl;
|
||||
|
||||
theStream << "\n\n Map of Links : \n";
|
||||
myLinks.Statistics(theStream);
|
||||
theStream << "\n Deleted links : " << myDelLinks.Extent() << endl;
|
||||
theStream << "\n Deleted links : " << myDelLinks.Extent() << std::endl;
|
||||
|
||||
theStream << "\n\n Map of elements : \n";
|
||||
theStream << "\n Elements : " << myElements.Size() << endl;
|
||||
theStream << "\n Elements : " << myElements.Size() << std::endl;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
|
@ -190,7 +190,7 @@ void BRepOffset_Analyse::Perform (const TopoDS_Shape& S,
|
||||
}
|
||||
else {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout <<"edge shared by more than two faces"<<endl;
|
||||
std::cout <<"edge shared by more than two faces"<<std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@ -577,7 +577,7 @@ BRepOffset_Type DefineConnectType(const TopoDS_Edge& E,
|
||||
else {
|
||||
//Mixed not finished!
|
||||
#ifdef OCCT_DEBUG
|
||||
cout <<" faces locally mixed"<<endl;
|
||||
std::cout <<" faces locally mixed"<<std::endl;
|
||||
#endif
|
||||
return BRepOffset_Convex;
|
||||
}
|
||||
|
@ -347,7 +347,7 @@ static void EdgeInter(const TopoDS_Face& F,
|
||||
if (Precision::IsInfinite(aT1) || Precision::IsInfinite(aT2))
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Inter2d : Solution rejected due to infinite parameter"<<endl;
|
||||
std::cout << "Inter2d : Solution rejected due to infinite parameter"<<std::endl;
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
@ -370,22 +370,22 @@ static void EdgeInter(const TopoDS_Face& F,
|
||||
#ifdef OCCT_DEBUG
|
||||
if (aT1 < f[1]-Tol || aT1 > l[1]+Tol)
|
||||
{
|
||||
cout << "out of limit"<<endl;
|
||||
cout<<"aT1 = "<<aT1<<", f[1] = "<<f[1]<<", l[1] = "<<l[1]<<endl;
|
||||
std::cout << "out of limit"<<std::endl;
|
||||
std::cout<<"aT1 = "<<aT1<<", f[1] = "<<f[1]<<", l[1] = "<<l[1]<<std::endl;
|
||||
}
|
||||
if (aT2 < f[2]-Tol || aT2 > l[2]+Tol)
|
||||
{
|
||||
cout << "out of limit"<<endl;
|
||||
cout<<"aT2 = "<<aT2<<", f[2] = "<<f[2]<<", l[2] = "<<l[2]<<endl;
|
||||
std::cout << "out of limit"<<std::endl;
|
||||
std::cout<<"aT2 = "<<aT2<<", f[2] = "<<f[2]<<", l[2] = "<<l[2]<<std::endl;
|
||||
}
|
||||
Standard_Real MilTol2 = 1000*Tol*Tol;
|
||||
if (P1.SquareDistance(P) > MilTol2 || P2.SquareDistance(P) > MilTol2 || P1.Distance(P2) > 2.*Tol)
|
||||
{
|
||||
cout << "Inter2d : Solution rejected "<<endl;
|
||||
cout<<"P = "<<P.X()<<" "<<P.Y()<<" "<<P.Z()<<endl;
|
||||
cout<<"P1 = "<<P1.X()<<" "<<P1.Y()<<" "<<P1.Z()<<endl;
|
||||
cout<<"P2 = "<<P2.X()<<" "<<P2.Y()<<" "<<P2.Z()<<endl;
|
||||
cout<<"MaxDist = "<<dist1<<endl;
|
||||
std::cout << "Inter2d : Solution rejected "<<std::endl;
|
||||
std::cout<<"P = "<<P.X()<<" "<<P.Y()<<" "<<P.Z()<<std::endl;
|
||||
std::cout<<"P1 = "<<P1.X()<<" "<<P1.Y()<<" "<<P1.Z()<<std::endl;
|
||||
std::cout<<"P2 = "<<P2.X()<<" "<<P2.Y()<<" "<<P2.Z()<<std::endl;
|
||||
std::cout<<"MaxDist = "<<dist1<<std::endl;
|
||||
}
|
||||
#endif
|
||||
//define the orientation of a new vertex
|
||||
@ -405,7 +405,7 @@ static void EdgeInter(const TopoDS_Face& F,
|
||||
Standard_Real CrossProd = V2or ^ V1;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (Abs(CrossProd) <= gp::Resolution())
|
||||
cout<<endl<<"CrossProd = "<<CrossProd<<endl;
|
||||
std::cout<<std::endl<<"CrossProd = "<<CrossProd<<std::endl;
|
||||
#endif
|
||||
if (CrossProd > 0.)
|
||||
OO1 = TopAbs_FORWARD;
|
||||
@ -489,7 +489,7 @@ static void EdgeInter(const TopoDS_Face& F,
|
||||
// Modified by skv - Thu Jan 22 18:19:05 2004 OCC4455 End
|
||||
LV1.Remove(it1LV1);
|
||||
LV2.Remove(it1LV2);
|
||||
if (AffichPurge) cout <<"Doubles removed in EdgeInter."<<endl;
|
||||
if (AffichPurge) std::cout <<"Doubles removed in EdgeInter."<<std::endl;
|
||||
Purge = Standard_True;
|
||||
break;
|
||||
}
|
||||
@ -616,7 +616,7 @@ static void RefEdgeInter(const TopoDS_Face& F,
|
||||
if (Precision::IsInfinite(aT1) || Precision::IsInfinite(aT2))
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << "Inter2d : Solution rejected due to infinite parameter"<<endl;
|
||||
std::cout << "Inter2d : Solution rejected due to infinite parameter"<<std::endl;
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
@ -639,22 +639,22 @@ static void RefEdgeInter(const TopoDS_Face& F,
|
||||
#ifdef OCCT_DEBUG
|
||||
if (aT1 < f[1]-Tol || aT1 > l[1]+Tol)
|
||||
{
|
||||
cout << "out of limit"<<endl;
|
||||
cout<<"aT1 = "<<aT1<<", f[1] = "<<f[1]<<", l[1] = "<<l[1]<<endl;
|
||||
std::cout << "out of limit"<<std::endl;
|
||||
std::cout<<"aT1 = "<<aT1<<", f[1] = "<<f[1]<<", l[1] = "<<l[1]<<std::endl;
|
||||
}
|
||||
if (aT2 < f[2]-Tol || aT2 > l[2]+Tol)
|
||||
{
|
||||
cout << "out of limit"<<endl;
|
||||
cout<<"aT2 = "<<aT2<<", f[2] = "<<f[2]<<", l[2] = "<<l[2]<<endl;
|
||||
std::cout << "out of limit"<<std::endl;
|
||||
std::cout<<"aT2 = "<<aT2<<", f[2] = "<<f[2]<<", l[2] = "<<l[2]<<std::endl;
|
||||
}
|
||||
Standard_Real MilTol2 = 1000*Tol*Tol;
|
||||
if (P1.SquareDistance(P) > MilTol2 || P2.SquareDistance(P) > MilTol2 || P1.Distance(P2) > 2.*Tol)
|
||||
{
|
||||
cout << "Inter2d : Solution rejected"<<endl;
|
||||
cout<<"P = "<<P.X()<<" "<<P.Y()<<" "<<P.Z()<<endl;
|
||||
cout<<"P1 = "<<P1.X()<<" "<<P1.Y()<<" "<<P1.Z()<<endl;
|
||||
cout<<"P2 = "<<P2.X()<<" "<<P2.Y()<<" "<<P2.Z()<<endl;
|
||||
cout<<"MaxDist = "<<dist1<<endl;
|
||||
std::cout << "Inter2d : Solution rejected"<<std::endl;
|
||||
std::cout<<"P = "<<P.X()<<" "<<P.Y()<<" "<<P.Z()<<std::endl;
|
||||
std::cout<<"P1 = "<<P1.X()<<" "<<P1.Y()<<" "<<P1.Z()<<std::endl;
|
||||
std::cout<<"P2 = "<<P2.X()<<" "<<P2.Y()<<" "<<P2.Z()<<std::endl;
|
||||
std::cout<<"MaxDist = "<<dist1<<std::endl;
|
||||
}
|
||||
#endif
|
||||
//define the orientation of a new vertex
|
||||
@ -674,7 +674,7 @@ static void RefEdgeInter(const TopoDS_Face& F,
|
||||
Standard_Real CrossProd = V2or ^ V1;
|
||||
#ifdef OCCT_DEBUG
|
||||
if (Abs(CrossProd) <= gp::Resolution())
|
||||
cout<<endl<<"CrossProd = "<<CrossProd<<endl;
|
||||
std::cout<<std::endl<<"CrossProd = "<<CrossProd<<std::endl;
|
||||
#endif
|
||||
if (CrossProd > 0.)
|
||||
OO1 = TopAbs_FORWARD;
|
||||
@ -746,7 +746,7 @@ static void RefEdgeInter(const TopoDS_Face& F,
|
||||
if (P1.IsEqual(P2,10*Tol)) {
|
||||
LV1.Remove(it1LV1);
|
||||
LV2.Remove(it1LV2);
|
||||
if (AffichPurge) cout <<"Doubles removed in EdgeInter."<<endl;
|
||||
if (AffichPurge) std::cout <<"Doubles removed in EdgeInter."<<std::endl;
|
||||
Purge = Standard_True;
|
||||
break;
|
||||
}
|
||||
@ -762,7 +762,7 @@ static void RefEdgeInter(const TopoDS_Face& F,
|
||||
//---------------------------------
|
||||
////-----------------------------------------------------
|
||||
if(LV1.Extent() > 1) {
|
||||
//cout << "IFV - RefEdgeInter: remove vertex" << endl;
|
||||
//std::cout << "IFV - RefEdgeInter: remove vertex" << std::endl;
|
||||
Standard_Real dmin = RealLast();
|
||||
TopoDS_Vertex Vmin;
|
||||
for (it1LV1.Initialize(LV1); it1LV1.More(); it1LV1.Next()) {
|
||||
@ -1135,7 +1135,7 @@ void BRepOffset_Inter2d::ExtentEdge(const TopoDS_Edge& E,TopoDS_Edge& NE, const
|
||||
f = Projector.LowerDistanceParameter();
|
||||
#ifdef OCCT_DEBUG
|
||||
else
|
||||
cout<<"ProjectPointOnCurve not done"<<endl;
|
||||
std::cout<<"ProjectPointOnCurve not done"<<std::endl;
|
||||
#endif
|
||||
}
|
||||
if (!Precision::IsInfinite(LastParOnPC))
|
||||
@ -1148,7 +1148,7 @@ void BRepOffset_Inter2d::ExtentEdge(const TopoDS_Edge& E,TopoDS_Edge& NE, const
|
||||
l = Projector.LowerDistanceParameter();
|
||||
#ifdef OCCT_DEBUG
|
||||
else
|
||||
cout<<"ProjectPointOnCurve not done"<<endl;
|
||||
std::cout<<"ProjectPointOnCurve not done"<<std::endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
@ -159,7 +159,7 @@ static void DEBVerticesControl (const TopTools_IndexedMapOfShape& NewEdges,
|
||||
for (it1LE.Initialize(AsDes->Descendant(NE)); it1LE.More(); it1LE.Next()) {
|
||||
if (AsDes->Ascendant(it1LE.Value()).Extent() < 3) {
|
||||
LVP.Append(it1LE.Value());
|
||||
cout <<"Vertex on at least 3 edges."<<endl;
|
||||
std::cout <<"Vertex on at least 3 edges."<<std::endl;
|
||||
#ifdef DRAW
|
||||
if (AffichInt2d) {
|
||||
sprintf (name,"VP_%d",NVP++);
|
||||
@ -168,7 +168,7 @@ static void DEBVerticesControl (const TopTools_IndexedMapOfShape& NewEdges,
|
||||
#endif
|
||||
}
|
||||
else if (AsDes->Ascendant(it1LE.Value()).Extent() > 3) {
|
||||
cout <<"Vertex on more than 3 edges."<<endl;
|
||||
std::cout <<"Vertex on more than 3 edges."<<std::endl;
|
||||
#ifdef DRAW
|
||||
if (AffichInt2d) {
|
||||
sprintf (name,"VM_%d",NVM++);
|
||||
@ -235,7 +235,7 @@ static void DEBVerticesControl (const TopTools_IndexedMapOfShape& NewEdges,
|
||||
j++;
|
||||
}
|
||||
i++;
|
||||
cout <<" distmin between VP : "<<distmin<<endl;
|
||||
std::cout <<" distmin between VP : "<<distmin<<std::endl;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -953,14 +953,14 @@ void BRepOffset_MakeOffset::MakeThickSolid()
|
||||
#ifdef OCCT_DEBUG
|
||||
if(YaResult == 0)
|
||||
{
|
||||
cout << "OffsetShape does not contain a FACES." << endl;
|
||||
std::cout << "OffsetShape does not contain a FACES." << std::endl;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#ifdef OCCT_DEBUG
|
||||
else
|
||||
{
|
||||
cout << "OffsetShape is null!" << endl;
|
||||
std::cout << "OffsetShape is null!" << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -1089,7 +1089,7 @@ void BRepOffset_MakeOffset::BuildOffsetByInter()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if ( ChronBuild) {
|
||||
cout << " CONSTRUCTION OF OFFSETS :" << endl;
|
||||
std::cout << " CONSTRUCTION OF OFFSETS :" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -1445,7 +1445,7 @@ void BRepOffset_MakeOffset::BuildOffsetByArc()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if ( ChronBuild) {
|
||||
cout << " CONSTRUCTION OF OFFSETS :" << endl;
|
||||
std::cout << " CONSTRUCTION OF OFFSETS :" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -1654,7 +1654,7 @@ void BRepOffset_MakeOffset::SelfInter(TopTools_MapOfShape& /*Modif*/)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if ( ChronBuild) {
|
||||
cout << " AUTODEBOUCLAGE:" << endl;
|
||||
std::cout << " AUTODEBOUCLAGE:" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -2290,7 +2290,7 @@ void BRepOffset_MakeOffset::Intersection3D(BRepOffset_Inter3d& Inter)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if (ChronBuild) {
|
||||
cout << " INTERSECTION 3D:" << endl;
|
||||
std::cout << " INTERSECTION 3D:" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -2350,7 +2350,7 @@ void BRepOffset_MakeOffset::Intersection2D(const TopTools_IndexedMapOfShape& Mod
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if (ChronBuild) {
|
||||
cout << " INTERSECTION 2D:" << endl;
|
||||
std::cout << " INTERSECTION 2D:" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -2390,7 +2390,7 @@ void BRepOffset_MakeOffset::MakeLoops(TopTools_IndexedMapOfShape& Modif)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if (ChronBuild) {
|
||||
cout << " DEBOUCLAGE 2D:" << endl;
|
||||
std::cout << " DEBOUCLAGE 2D:" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -2438,7 +2438,7 @@ void BRepOffset_MakeOffset::MakeFaces(TopTools_IndexedMapOfShape& /*Modif*/)
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if (ChronBuild) {
|
||||
cout << " RECONSTRUCTION OF FACES:" << endl;
|
||||
std::cout << " RECONSTRUCTION OF FACES:" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -2946,7 +2946,7 @@ void BRepOffset_MakeOffset::MakeShells ()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if (ChronBuild) {
|
||||
cout << " RECONSTRUCTION OF SHELLS:" << endl;
|
||||
std::cout << " RECONSTRUCTION OF SHELLS:" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -3200,7 +3200,7 @@ void BRepOffset_MakeOffset::EncodeRegularity ()
|
||||
{
|
||||
#ifdef OCCT_DEBUG
|
||||
if (ChronBuild) {
|
||||
cout << " CODING OF REGULARITIES:" << endl;
|
||||
std::cout << " CODING OF REGULARITIES:" << std::endl;
|
||||
Clock.Reset();
|
||||
Clock.Start();
|
||||
}
|
||||
@ -3227,7 +3227,7 @@ void BRepOffset_MakeOffset::EncodeRegularity ()
|
||||
|
||||
if (LofOF.Extent() != 2) {
|
||||
#ifdef OCCT_DEBUG_VERB
|
||||
cout << " Edge shared by " << LofOF.Extent() << " Faces" << endl;
|
||||
std::cout << " Edge shared by " << LofOF.Extent() << " Faces" << std::endl;
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
|
@ -871,7 +871,7 @@ void BuildSplitsOfFaces(const TopTools_ListOfShape& theLF,
|
||||
BRepAlgoAPI_Check aChecker(aCE);
|
||||
if (!aChecker.IsValid())
|
||||
{
|
||||
cout << "Offset_i_c Error: set of edges to build faces is self-intersecting\n";
|
||||
std::cout << "Offset_i_c Error: set of edges to build faces is self-intersecting\n";
|
||||
}
|
||||
#endif
|
||||
// build splits
|
||||
|
@ -941,7 +941,7 @@ void BRepOffset_Offset::Init(const TopoDS_Face& Face,
|
||||
P2d = C2d->Value(l); TheSurf->D0(P2d.X(),P2d.Y(),P2);
|
||||
Standard_Real Tol = BRep_Tool::Tolerance(V1);
|
||||
if (!P1.IsEqual(P2,Tol)) {
|
||||
cout <<"BRepOffset_Offset : E degenerated -> OE not degenerated"<<endl;
|
||||
std::cout <<"BRepOffset_Offset : E degenerated -> OE not degenerated"<<std::endl;
|
||||
}
|
||||
#endif
|
||||
*/
|
||||
@ -1241,7 +1241,7 @@ void BRepOffset_Offset::Init(const TopoDS_Edge& Path,
|
||||
#ifdef OCCT_DEBUG
|
||||
// si firstedge n est pas nul, il faut que les vertex soient partages
|
||||
if ( !VVf.IsSame(V1f) && !VVf.IsSame(V2f) ) {
|
||||
cout << "Attention Vertex non partages !!!!!!" << endl;
|
||||
std::cout << "Attention Vertex non partages !!!!!!" << std::endl;
|
||||
}
|
||||
#endif
|
||||
if ( !VVf.IsSame(V1f) && !VVf.IsSame(V2f) ) {
|
||||
@ -1305,7 +1305,7 @@ void BRepOffset_Offset::Init(const TopoDS_Edge& Path,
|
||||
#ifdef OCCT_DEBUG
|
||||
// si lastedge n est pas nul, il faut que les vertex soient partages
|
||||
if ( !VVf.IsSame(V1l) && !VVf.IsSame(V2l) ) {
|
||||
cout << "Attention Vertex non partages !!!!!!" << endl;
|
||||
std::cout << "Attention Vertex non partages !!!!!!" << std::endl;
|
||||
}
|
||||
#endif
|
||||
if ( !VVf.IsSame(V1l) && !VVf.IsSame(V2l) ) {
|
||||
|
@ -1754,7 +1754,7 @@ void BRepOffset_Tool::Inter3D(const TopoDS_Face& F1,
|
||||
BRepLib::SameParameter(anEdge, aSameParTol, Standard_True);
|
||||
Standard_Real EdgeTol = BRep_Tool::Tolerance(anEdge);
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"Tolerance of glued E = "<<EdgeTol<<endl;
|
||||
std::cout<<"Tolerance of glued E = "<<EdgeTol<<std::endl;
|
||||
#endif
|
||||
if (EdgeTol > 1.e-2)
|
||||
continue;
|
||||
@ -1764,7 +1764,7 @@ void BRepOffset_Tool::Inter3D(const TopoDS_Face& F1,
|
||||
ReconstructPCurves(anEdge);
|
||||
BRepLib::SameParameter(anEdge, aSameParTol, Standard_True);
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"After projection tol of E = "<<BRep_Tool::Tolerance(anEdge)<<endl;
|
||||
std::cout<<"After projection tol of E = "<<BRep_Tool::Tolerance(anEdge)<<std::endl;
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -2087,16 +2087,16 @@ static Standard_Boolean ProjectVertexOnEdge(TopoDS_Vertex& V,
|
||||
if (AffichExtent) {
|
||||
Standard_Real Dist = P.Distance(C.Value(U));
|
||||
if (Dist > TolConf) {
|
||||
cout << " ProjectVertexOnEdge :distance vertex edge :"<<Dist<<endl;
|
||||
std::cout << " ProjectVertexOnEdge :distance vertex edge :"<<Dist<<std::endl;
|
||||
}
|
||||
if (U < f - Precision::Confusion() ||
|
||||
U > l + Precision::Confusion()) {
|
||||
cout << " ProjectVertexOnEdge : hors borne :"<<endl;
|
||||
cout << " f = "<<f<<" l ="<<l<< " U ="<<U<<endl;
|
||||
std::cout << " ProjectVertexOnEdge : hors borne :"<<std::endl;
|
||||
std::cout << " f = "<<f<<" l ="<<l<< " U ="<<U<<std::endl;
|
||||
}
|
||||
}
|
||||
if (!found) {
|
||||
cout <<"BRepOffset_Tool::ProjectVertexOnEdge Parameter no found"<<endl;
|
||||
std::cout <<"BRepOffset_Tool::ProjectVertexOnEdge Parameter no found"<<std::endl;
|
||||
if (Abs(f) < Precision::Infinite() &&
|
||||
Abs(l) < Precision::Infinite()) {
|
||||
#ifdef DRAW
|
||||
@ -2187,7 +2187,7 @@ void BRepOffset_Tool::Inter2d (const TopoDS_Face& F,
|
||||
// F,fl2[0],fl2[1]);
|
||||
#ifdef OCCT_DEBUG
|
||||
if (C1.IsNull() || C2.IsNull()) {
|
||||
cout <<"Inter2d : Pas de pcurve"<<endl;
|
||||
std::cout <<"Inter2d : Pas de pcurve"<<std::endl;
|
||||
#ifdef DRAW
|
||||
DBRep::Set("E1",E1);
|
||||
DBRep::Set("E2",E2);
|
||||
@ -2304,11 +2304,11 @@ void BRepOffset_Tool::Inter2d (const TopoDS_Face& F,
|
||||
Standard_Real U2on1 = IntP1.ParamOnSecond();
|
||||
Standard_Real U2on2 = IntP2.ParamOnSecond();
|
||||
#ifdef OCCT_DEBUG
|
||||
cout << " BRepOffset_Tool::Inter2d SEGMENT d intersection" << endl;
|
||||
cout << " ===> Parametres sur Curve1 : ";
|
||||
cout << U1on1 << " " << U1on2 << endl;
|
||||
cout << " ===> Parametres sur Curve2 : ";
|
||||
cout << U2on1 << " " << U2on2 << endl;
|
||||
std::cout << " BRepOffset_Tool::Inter2d SEGMENT d intersection" << std::endl;
|
||||
std::cout << " ===> Parametres sur Curve1 : ";
|
||||
std::cout << U1on1 << " " << U1on2 << std::endl;
|
||||
std::cout << " ===> Parametres sur Curve2 : ";
|
||||
std::cout << U2on1 << " " << U2on2 << std::endl;
|
||||
#endif
|
||||
U1 = (U1on1 + U1on2)/2.;
|
||||
U2 = (U2on1 + U2on2)/2.;
|
||||
@ -2363,7 +2363,7 @@ void BRepOffset_Tool::Inter2d (const TopoDS_Face& F,
|
||||
|
||||
#ifdef OCCT_DEBUG
|
||||
if (!YaSol) {
|
||||
cout <<"Inter2d : Pas de solution"<<endl;
|
||||
std::cout <<"Inter2d : Pas de solution"<<std::endl;
|
||||
#ifdef DRAW
|
||||
DBRep::Set("E1",E1);
|
||||
DBRep::Set("E2",E2);
|
||||
|
@ -356,9 +356,9 @@ void BRepOffsetAPI_MakeOffset::Perform(const Standard_Real Offset,
|
||||
}
|
||||
catch(Standard_Failure const& anException) {
|
||||
#ifdef OCCT_DEBUG
|
||||
cout<<"An exception was caught in BRepOffsetAPI_MakeOffset::Perform : ";
|
||||
anException.Print(cout);
|
||||
cout<<endl;
|
||||
std::cout<<"An exception was caught in BRepOffsetAPI_MakeOffset::Perform : ";
|
||||
anException.Print(std::cout);
|
||||
std::cout<<std::endl;
|
||||
#endif
|
||||
(void)anException;
|
||||
NotDone();
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user