X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Tool.h;h=359ddf5b136bfd64c594d1fedd4f1da711eaeb5b;hb=f86cf7ecf17dbae2a1d84e0ebbab07c732208c2f;hp=b9b6d6d7658d7ba01ebfb7eb9946d8d2444007e7;hpb=81a3afc2fa400c75661571a9402416dfb839ff6c;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Tool.h b/src/HYDROData/HYDROData_Tool.h index b9b6d6d7..359ddf5b 100644 --- a/src/HYDROData/HYDROData_Tool.h +++ b/src/HYDROData/HYDROData_Tool.h @@ -23,8 +23,8 @@ #include #include -class Handle_HYDROData_Document; -class Handle_HYDROData_Entity; +class HYDROData_Document; +class HYDROData_Entity; class HYDROData_SequenceOfObjects; class MapOfTreatedObjects; class gp_XY; @@ -40,7 +40,6 @@ class TopoDS_Edge; class TopoDS_Face; class TopoDS_Shape; class TopoDS_Wire; -class TopTools_SequenceOfShape; class Quantity_Color; class HYDRODATA_EXPORT HYDROData_Tool { @@ -59,7 +58,7 @@ public: * \param theIsTryToUsePurePrefix if true - the prefix will be returned if the name equal to the prefix is not busy * \return generated name */ - static QString GenerateObjectName( const Handle_HYDROData_Document& theDoc, + static QString GenerateObjectName( const Handle(HYDROData_Document)& theDoc, const QString& thePrefix, const QStringList& theUsedNames = QStringList(), const bool theIsTryToUsePurePrefix = false ); @@ -69,7 +68,7 @@ public: * \param theObject object to check * \return true if object is geometry object */ - static bool IsGeometryObject( const Handle_HYDROData_Entity& theObject ); + static bool IsGeometryObject( const Handle(HYDROData_Entity)& theObject ); /** * \brief Updates the child object name. @@ -79,7 +78,7 @@ public: */ static void UpdateChildObjectName( const QString& theOldStr, const QString& theNewStr, - const Handle_HYDROData_Entity& theObject ); + const Handle(HYDROData_Entity)& theObject ); /** @@ -121,6 +120,14 @@ public: static Quantity_Color toOccColor( const QColor& ); static QColor toQtColor( const Quantity_Color& ); + + static bool IsNan( double theValue ); + static bool IsInf( double theValue ); + + /** + Rebuilds shape container (like compound/compsolid/shell) which contains faces (shared or nonshared with each other) + */ + static TopoDS_Shape RebuildCmp(const TopoDS_Shape& in); }; inline bool ValuesEquals( const double& theFirst, const double& theSecond )