X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_ProfileUZ.h;h=c485e944b5bc20a0f1861b368fe1e7bf81daa628;hb=424f8230c9003d00fb27499b2441c4b3a2a28292;hp=9b86029f1c83e6ad8be86cc7caee0109b506c361;hpb=8749815cc2069167555bf5e823190727b7004a35;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_ProfileUZ.h b/src/HYDROData/HYDROData_ProfileUZ.h index 9b86029f..c485e944 100644 --- a/src/HYDROData/HYDROData_ProfileUZ.h +++ b/src/HYDROData/HYDROData_ProfileUZ.h @@ -35,7 +35,12 @@ public: /** * Returns the 3D presentation of all points. */ - HYDRODATA_EXPORT virtual TopoDS_Wire GetWire() const; + HYDRODATA_EXPORT virtual TopoDS_Shape GetShape(); + + /** + * Returns the 3D presentation of all points. + */ + HYDRODATA_EXPORT virtual double GetDepthFromDistance( const double& theDistance ) const; /** @@ -45,9 +50,41 @@ public: /** * Adds new one section. - * \param theIsClosed flag indicates type of polyline + * \param theSectName name of the section + * \param theSectionType type of section + * \param theIsClosed flag indicates closures of section + */ + HYDRODATA_EXPORT virtual void AddSection( const TCollection_AsciiString& theSectName, + const SectionType theSectionType, + const bool theIsClosed ); + + /** + * Returns name of section with given index. + * \param theSectionIndex index of section */ - HYDRODATA_EXPORT virtual void AddSection( const bool theIsClosed ); + HYDRODATA_EXPORT virtual TCollection_AsciiString GetSectionName( const int theSectionIndex ) const; + + /** + * Set name for section with given index. + * \param theSectionIndex index of section + * \param theSectionName new section name + */ + HYDRODATA_EXPORT virtual void SetSectionName( const int theSectionIndex, + const TCollection_AsciiString& theSectionName ); + + /** + * Returns type of section with given index. + * \param theSectionIndex index of section + */ + HYDRODATA_EXPORT virtual SectionType GetSectionType( const int theSectionIndex ) const; + + /** + * Set type for section with given index. + * \param theSectionIndex index of section + * \param theSectionType new section type + */ + HYDRODATA_EXPORT virtual void SetSectionType( const int theSectionIndex, + const SectionType theSectionType ); /** * Returns true if section with given index is closed. @@ -55,6 +92,14 @@ public: */ HYDRODATA_EXPORT virtual bool IsClosedSection( const int theSectionIndex ) const; + /** + * Set closed flag for section with given index. + * \param theSectionIndex index of section + * \param theIsClosed new closures state + */ + HYDRODATA_EXPORT virtual void SetSectionClosed( const int theSectionIndex, + const bool theIsClosed ); + /** * Removes section with given index. * \param theSectionIndex index of section @@ -80,12 +125,12 @@ public: /** * Replaces point for section with index "theSectionIndex". * \param theSectionIndex index of section - * \param thePointIndex index of point to replace * \param thePoint new point + * \param thePointIndex index of point to replace */ HYDRODATA_EXPORT virtual void SetPoint( const int theSectionIndex, - const int thePointIndex, - const Point& thePoint ); + const Point& thePoint, + const int thePointIndex ); /** * Removes point from section with index "theSectionIndex". @@ -112,12 +157,12 @@ protected: * Creates new object in the internal data structure. Use higher level objects * to create objects with real content. */ - HYDROData_ProfileUZ(); + HYDRODATA_EXPORT HYDROData_ProfileUZ(); /** * Destructs properties of the object and object itself, removes it from the document. */ - ~HYDROData_ProfileUZ(); + HYDRODATA_EXPORT ~HYDROData_ProfileUZ(); }; #endif