X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Polyline3D.h;h=ea550ca9a4acf8aa107fcebc5c06f4b30c80f777;hb=81c9f5cdf82909d0aebd2c491c50fa7516cc80b7;hp=f6e883b80d2ccf52d84712df165bb828f61c6514;hpb=ff852fa6906c698aea0e95554f1c33e2560b61ef;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Polyline3D.h b/src/HYDROData/HYDROData_Polyline3D.h index f6e883b8..ea550ca9 100644 --- a/src/HYDROData/HYDROData_Polyline3D.h +++ b/src/HYDROData/HYDROData_Polyline3D.h @@ -30,6 +30,7 @@ protected: DataTag_First = HYDROData_Object::DataTag_First + 100, ///< first tag, to reserve DataTag_PolylineXY, ///< reference hydraulic axis DataTag_ProfileUZ, ///< reference profile + DataTag_ChildProfileUZ, ///< reference profile }; public: @@ -83,7 +84,8 @@ public: /** * Sets reference x,y polyline object for 3D polyline. */ - HYDRODATA_EXPORT virtual bool SetPolylineXY( const Handle(HYDROData_PolylineXY)& thePolyline ); + HYDRODATA_EXPORT virtual bool SetPolylineXY( const Handle(HYDROData_PolylineXY)& thePolyline, + const bool theIsUpdateProfile = true ); /** * Returns reference x,y polyline object of 3D polyline. @@ -116,7 +118,24 @@ public: * Set reference bathymetry object for geometry object. * Reimplemented to remove reference u,z profile. */ - HYDRODATA_EXPORT virtual bool SetBathymetry( const Handle(HYDROData_Bathymetry)& theBathymetry ); + HYDRODATA_EXPORT virtual bool SetAltitudeObject( const Handle(HYDROData_IAltitudeObject)& theAltitude ); + + /** + * Clear the reference bathymetry object for geometry object. + * Reimplemented to remove child u,z profile. + */ + HYDRODATA_EXPORT virtual void RemoveAltitudeObject(); + + + /** + * Returns the child u,z profile which has been generated from bathymetry. + */ + HYDRODATA_EXPORT Handle(HYDROData_ProfileUZ) GetChildProfileUZ( const bool theIsCreate = true ) const; + + /** + * Sets the child u,z profile for polyline. + */ + HYDRODATA_EXPORT void SetChildProfileUZ( const Handle(HYDROData_ProfileUZ)& theProfile ); protected: @@ -138,6 +157,14 @@ protected: HYDRODATA_EXPORT virtual void checkAndSetObject3D() {} +protected: + + + void updateChildProfilePoints(); + + void removeChildProfileUZ(); + + protected: friend class HYDROData_Iterator;