X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Obstacle.h;h=3641ba9d592f978e8f87c5243df000762f2eeb74;hb=81c9f5cdf82909d0aebd2c491c50fa7516cc80b7;hp=2e38854bed6dd5af379b38b7b09ec3d2a4381576;hpb=e5123a9d71157c50c9f1c6f68bccdfadc49f2360;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Obstacle.h b/src/HYDROData/HYDROData_Obstacle.h index 2e38854b..3641ba9d 100644 --- a/src/HYDROData/HYDROData_Obstacle.h +++ b/src/HYDROData/HYDROData_Obstacle.h @@ -20,7 +20,8 @@ protected: { DataTag_First = HYDROData_ArtificialObject::DataTag_First + 100, ///< first tag, to reserve DataTag_GeomObjectEntry, ///< study entry of the imported GEOM object - DataTag_FilePath ///< imported file path + DataTag_FilePath, ///< imported file path + DataTag_Translation, ///< translation coefficients }; public: @@ -42,6 +43,13 @@ public: */ HYDRODATA_EXPORT virtual void Update(); + HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy ); + + /** + * Checks that object has 2D presentation. Reimlemented to retun true. + */ + HYDRODATA_EXPORT virtual bool IsHas2dPrs() const; + /** * Returns the top shape of the object. */ @@ -113,6 +121,14 @@ public: */ HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectEntry() const; + + /** + * Translate the obstacle to the given distance. + */ + HYDRODATA_EXPORT void Translate( const double theDx, + const double theDy, + const double theDz ); + protected: /** @@ -133,27 +149,6 @@ protected: private: - /** - * Create all necessary child group objects. - */ - HYDRODATA_EXPORT void createGroupObjects(); - -protected: - - friend class HYDROData_Iterator; - - /** - * Creates new object in the internal data structure. Use higher level objects - * to create objects with real content. - */ - HYDRODATA_EXPORT HYDROData_Obstacle(); - - /** - * Destructs properties of the object and object itself, removes it from the document. - */ - virtual HYDRODATA_EXPORT ~HYDROData_Obstacle(); - -private: /** * Imports shape from the BREP file. * \param theFilePath the path to file @@ -174,6 +169,37 @@ private: * \return shape as TopoDS_Shape (null shape if import was failed) */ TopoDS_Shape ImportSTEP( const QString& theFilePath ) const; + + /** + * Create all necessary child group objects. + */ + void createGroupObjects(); + + /** + * Sets the translation coefficients. + */ + void setTranslation( const double theDx, const double theDy, const double theDz ); + + /** + * Returns the translation coefficients. + */ + bool getTranslation( double& theDx, double& theDy, double& theDz ) const; + +protected: + + friend class HYDROData_Iterator; + + /** + * Creates new object in the internal data structure. Use higher level objects + * to create objects with real content. + */ + HYDRODATA_EXPORT HYDROData_Obstacle(); + + /** + * Destructs properties of the object and object itself, removes it from the document. + */ + virtual HYDRODATA_EXPORT ~HYDROData_Obstacle(); + }; #endif