#ifdef OCCT_DEBUG
if (BRepCheck_Trace(0) > 1) {
TopTools_DataMapIteratorOfDataMapOfShapeInteger itt(MapOfShapeOrientation);
- Standard_Integer upper = MapOfShapeOrientation.NbBuckets();
std::cout << "La map shape Orientation :" << std::endl;
for (; itt.More(); itt.Next()) {
- PrintShape(itt.Key(), upper);
+ PrintShape(itt.Key());
}
std::cout << std::endl;
}
if (BRepCheck_Trace(0) > 3)
{
std::cout << "Fref : " ;
- PrintShape(Fref, MapOfShapeOrientation.NbBuckets());
+ PrintShape(Fref);
}
#endif
if (BRepCheck_Trace(0) > 3)
{
std::cout << " Fcur : " ;
- PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
+ PrintShape(Fcur);
}
#endif
for (edFcur.Init(Fcur, TopAbs_EDGE); edFcur.More(); edFcur.Next())
Fcur.Orientation(orf);
std::cout << " Error : this face has been already examined " << std::endl;
std::cout << " Impossible to return it ";
- PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
+ PrintShape(Fcur);
}
#endif
return myOstat;
orf = (TopAbs_Orientation)MapOfShapeOrientation.Find(Fcur);
Fcur.Orientation(orf);
std::cout << " Resulting Fcur is returned : " ;
- PrintShape(Fcur, MapOfShapeOrientation.NbBuckets());
+ PrintShape(Fcur);
}
#endif