Salome HOME
merge BR_v14_rc
[modules/hydro.git] / src / HYDROData / HYDROData_Tool.h
index 83b1c0421ca439e37739500e4b43971b0d2564d0..0642d4fd74e6bc5da83cfbe2924ca10beb126207 100644 (file)
@@ -35,6 +35,8 @@ class QFile;
 class TopoDS_Shape;
 class TopTools_SequenceOfShape;
 class Handle(HYDROData_Document);
+class TopoDS_Edge;
+class TopoDS_Wire;
 
 class HYDRODATA_EXPORT HYDROData_Tool {
 
@@ -44,12 +46,6 @@ public:
                                                             const QStringList& theStrings,
                                                             const QString&     theSep = "\n" );
 
-  /**
-   * Enables "MustBeUpdated" flag for objects that are depended on "MustBeUpdated" objects.
-   * \param theDoc document where this operation is performed
-   */
-  static void                           SetMustBeUpdatedObjects( const Handle(HYDROData_Document)& theDoc );
-
   /**
    * \brief Generate name for new object.
    * \param theDoc document
@@ -95,6 +91,25 @@ public:
 
  static TopAbs_State                    ComputePointState( const gp_XY& thePnt2d, 
                                                               const TopoDS_Face& theFace );
+
+  static double GetAltitudeForEdge( const TopoDS_Edge& theEdge,
+                                    const gp_XY& thePoint,
+                                    double theParameterTolerance,
+                                    double theSquareDistanceTolerance,
+                                    double theInvalidAltitude );
+  static double GetAltitudeForWire( const TopoDS_Wire& theWire,
+                                    const gp_XY& thePoint,
+                                    double theParameterTolerance,
+                                    double theSquareDistanceTolerance,
+                                    double theInvalidAltitude );
+
+  /**
+   * \brief Returns the first shape from the group.
+   * \param theGroups the list of groups
+   * \param theGroupId the group id
+   */
+  static TopoDS_Shape getFirstShapeFromGroup( const HYDROData_SequenceOfObjects& theGroups,
+                                              const int                          theGroupId );
 };
 
 inline bool ValuesEquals( const double& theFirst, const double& theSecond )