X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Symmetry.h;h=f0b296b4663b5d386cab49156780b5b3347a12fb;hb=2a66d6831081d6dbd001749177444628bbd85374;hp=aa67bd79b72580d9c245a18f0bb0bfbf8e38c668;hpb=87b6a30a3afb8fb32e7e43ade8d9c947d9eb1684;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Symmetry.h b/src/FeaturesPlugin/FeaturesPlugin_Symmetry.h index aa67bd79b..f0b296b46 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Symmetry.h +++ b/src/FeaturesPlugin/FeaturesPlugin_Symmetry.h @@ -27,6 +27,8 @@ #include +class GeomAPI_Trsf; + /** \class FeaturesPlugin_Symmetry * \ingroup Plugins * \brief Feature that performs reflection with respect to a point, axis, or plane. @@ -97,6 +99,13 @@ class FeaturesPlugin_Symmetry : public ModelAPI_Feature return MY_PLANE_OBJECT_ID; } + /// Attribute name of keeping original shape. + inline static const std::string& KEEP_ORIGINAL_RESULT() + { + static const std::string MY_KEEP_ORIGINAL_RESULT_ID("keep_original"); + return MY_KEEP_ORIGINAL_RESULT_ID; + } + /// \return the kind of a feature. FEATURESPLUGIN_EXPORT virtual const std::string& getKind() { @@ -114,6 +123,10 @@ class FeaturesPlugin_Symmetry : public ModelAPI_Feature FeaturesPlugin_Symmetry(); private: + /// Obtain list of source objects of the mirror + bool collectSourceObjects(ListOfShape& theSourceShapes, + std::list>& theSourceResults); + /// Perform symmetry with respect to a point. void performSymmetryByPoint(); @@ -127,6 +140,16 @@ private: void loadNamingDS(GeomAlgoAPI_Symmetry& theSymmetryAlgo, std::shared_ptr theResultBody, std::shared_ptr theBaseShape); + + /// Create new result on given shapes and the index of result + void buildResult(GeomAlgoAPI_Symmetry& theSymmetryAlgo, + std::shared_ptr theBaseShape, + int theResultIndex); + + /// Create new result for the given part and transformation + void buildResult(std::shared_ptr theOriginal, + std::shared_ptr theTrsf, + int& theResultIndex); }; #endif // FEATURESPLUGIN_SYMMETRY_H_