X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_Boolean.h;h=1c3655d9b0fdcbbc13c4854d88064109da3079b9;hb=7dc85ea3929c3543703b2d8e689f8a66c0384272;hp=790e7950c25ede6c4d2b0d6e52f0ad49adc35367;hpb=542c9d721fbef80eb2040ef248fdd431cad2e631;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Boolean.h b/src/GeomAlgoAPI/GeomAlgoAPI_Boolean.h index 790e7950c..1c3655d9b 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,84 @@ #define GeomAlgoAPI_Boolean_H_ #include +#include + #include -#include +#include +#include -/**\class GeomAlgoAPI_Boolean - * \ingroup DataAlgo - * \brief Allows to perform of boolean operations +#include + +/** \class GeomAlgoAPI_Boolean + * \ingroup DataAlgo + * \brief Allows to perform of boolean operations */ -class GEOMALGOAPI_EXPORT GeomAlgoAPI_Boolean +class GeomAlgoAPI_Boolean : public GeomAPI_Interface { +public: + enum OperationType{ + BOOL_CUT, + BOOL_FUSE, + BOOL_COMMON + }; + 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 + /** \brief Creates cut boolean operation. + * \param[in] theObjects the main shape. + * \param[in] theTools toole shape for boolean. + * \return a solid or compound of solids as result of operation. + */ + GEOMALGOAPI_EXPORT static std::shared_ptr makeCut(const ListOfShape& theObjects, + const ListOfShape& theTools); + + /** \brief Creates fuse boolean operation. + * \param[in] theObjects the main shape. + * \param[in] theTools second shape. + * \return a solid as result of operation. + */ + GEOMALGOAPI_EXPORT static std::shared_ptr makeFuse(const ListOfShape& theObjects, + const ListOfShape& theTools); + + /** \brief Creates common boolean operation. + * \param[in] theObjects the main shape. + * \param[in] theTools second shape. + * \return a solid as result of operation. */ - static boost::shared_ptr makeCut(boost::shared_ptr theShape, - boost::shared_ptr theTool); + GEOMALGOAPI_EXPORT static std::shared_ptr makeCommon(const ListOfShape& theObjects, + const ListOfShape& theTools); + + /// Constructor. + GEOMALGOAPI_EXPORT GeomAlgoAPI_Boolean(const ListOfShape& theObjects, + const ListOfShape& theTools, + const OperationType theOperationType); + + /// \return true if algorithm succeed. + GEOMALGOAPI_EXPORT const bool isDone() const; + + /// \return true if resulting shape is valid. + GEOMALGOAPI_EXPORT const bool isValid() const; + + /// \return result of the boolean algorithm. + GEOMALGOAPI_EXPORT const std::shared_ptr& shape() const; + + /// \return map of sub-shapes of the result. To be used for History keeping. + GEOMALGOAPI_EXPORT std::shared_ptr mapOfShapes() const; + + /// \return interface for for History processing. + GEOMALGOAPI_EXPORT std::shared_ptr makeShape() const; + +private: + /// Builds resulting shape. + void build(const ListOfShape& theObjects, + const ListOfShape& theTools, + const OperationType theOperationType); +private: + /// Fields. + bool myDone; + std::shared_ptr myShape; + std::shared_ptr myMap; + std::shared_ptr myMkShape; }; #endif