X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Boolean.h;h=39175ee2e6a1f45de9442bcdd39a6edd65cb5706;hb=f0cec241aae9ca16d86e166f45cb5c4987d2c792;hp=790e7950c25ede6c4d2b0d6e52f0ad49adc35367;hpb=542c9d721fbef80eb2040ef248fdd431cad2e631;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Boolean.h b/src/GeomAlgoAPI/GeomAlgoAPI_Boolean.h index 790e7950c..39175ee2e 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Boolean.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Boolean.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAlgoAPI_Boolean.h // Created: 02 Sept 2014 // Author: Vitaly Smetannikov @@ -6,24 +8,35 @@ #define GeomAlgoAPI_Boolean_H_ #include +#include + #include -#include -/**\class GeomAlgoAPI_Boolean - * \ingroup DataAlgo - * \brief Allows to perform of boolean operations - */ -class GEOMALGOAPI_EXPORT GeomAlgoAPI_Boolean +/// \class GeomAlgoAPI_Boolean +/// \ingroup DataAlgo +/// \brief Allows to perform of boolean operations +class GeomAlgoAPI_Boolean : public GeomAlgoAPI_MakeShape { +public: + /// Type of booelan operation + enum OperationType { + BOOL_CUT, ///< Cut objects + BOOL_FUSE, ///< Fuse objects + BOOL_COMMON ///< Take common part of objects + }; + public: - /* \brief Creates cut boolean operation - * \param[in] theShape face or wire to be extruded - * \param[in] theTool toole shape for boolean - * \return a solid as result of operation - */ - static boost::shared_ptr makeCut(boost::shared_ptr theShape, - boost::shared_ptr theTool); + /// Constructor. + GEOMALGOAPI_EXPORT GeomAlgoAPI_Boolean(const ListOfShape& theObjects, + const ListOfShape& theTools, + const OperationType theOperationType); + +private: + /// Builds resulting shape. + void build(const ListOfShape& theObjects, + const ListOfShape& theTools, + const OperationType theOperationType); }; #endif