X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Box.h;h=449d633f6dc96cb4461dafa2e0b6d6014ccaa81c;hb=87f348fe7ec3805441bd5524536736eeb2e87501;hp=23bcb8d350c40b66532c8cea836d9c20a069129e;hpb=114b72cd99a3a4be9e851be1c4b271b554808897;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Box.h b/src/GeomAlgoAPI/GeomAlgoAPI_Box.h index 23bcb8d35..449d633f6 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Box.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Box.h @@ -4,8 +4,8 @@ // Created: 17 Mar 2016 // Author: Clarisse Genrault (CEA) -#ifndef GeomAlgoAPI_Box_H_ -#define GeomAlgoAPI_Box_H_ +#ifndef GEOMALGOAPI_BOX_H_ +#define GEOMALGOAPI_BOX_H_ #include #include @@ -16,29 +16,49 @@ */ class GeomAlgoAPI_Box : public GeomAlgoAPI_MakeShape { - public: + public: + /// Type of box operation + enum MethodType { + BOX_DIM, ///< Box with dimensions + BOX_POINTS, ///< Box with points + }; + GEOMALGOAPI_EXPORT GeomAlgoAPI_Box(); - + /// Creates a box using the dimensions. /// \param theDx The dimension on X /// \param theDy The dimension on Y /// \param theDz The dimension on Z GEOMALGOAPI_EXPORT GeomAlgoAPI_Box(const double theDx, const double theDy, const double theDz); - - /// Checks if each dimension "Dx", Dy" and "Dz" for the box construction is OK. + + /// Creates a box using the two points that defined a diagonal. + /// \param theFirstPoint One extermity of the diagonal + /// \param theSecondPoint The other extremity of the diagonal + GEOMALGOAPI_EXPORT GeomAlgoAPI_Box(std::shared_ptr theFirstPoint, + std::shared_ptr theSecondPoint); + + /// Checks if data for the box construction is OK. GEOMALGOAPI_EXPORT bool check(); - - /// Builds the box with the dimensions "Dx", "Dy" and "Dz". + + /// Builds the box. GEOMALGOAPI_EXPORT void build(); - + /// Prepare the naming (redifined because it is specific for a box). GEOMALGOAPI_EXPORT void prepareNamingFaces(); - + private: + /// Builds the box with the dimensions "Dx", "Dy" and "Dz". + void buildWithDimensions(); + /// Builds the box with two points + void buildWithPoints(); + double myDx; /// Dimension on X to create a box. double myDy; /// Dimension on Y to create a box. double myDz; /// Dimension Z to create a box. + std::shared_ptr myFirstPoint; /// First point to create a box. + std::shared_ptr mySecondPoint; /// Second point to create a box. + MethodType myMethodType; /// Type of method used. }; -#endif +#endif // GEOMALGOAPI_BOX_H_