X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FFeaturesAPI%2FFeaturesAPI_Union.h;h=022d14130f6b242eefdc2747292e2b5c06fc590d;hb=660930f24994da13c3a3ac089abfbfa20cb9b109;hp=bcc6aee2e474f0dbac52457479f0c30126a0c199;hpb=13c564bef7d39cd31b142d6723caf03501a4f683;p=modules%2Fshaper.git diff --git a/src/FeaturesAPI/FeaturesAPI_Union.h b/src/FeaturesAPI/FeaturesAPI_Union.h index bcc6aee2e..022d14130 100644 --- a/src/FeaturesAPI/FeaturesAPI_Union.h +++ b/src/FeaturesAPI/FeaturesAPI_Union.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -26,6 +26,7 @@ #include #include +#include class ModelHighAPI_Dumper; class ModelHighAPI_Selection; @@ -44,20 +45,26 @@ public: FEATURESAPI_EXPORT explicit FeaturesAPI_Union(const std::shared_ptr& theFeature, const std::list& theBaseObjects, - const int theVersion = 0); + const ModelHighAPI_Double& theFuzzy = ModelHighAPI_Double(1.e-8)); /// Destructor. FEATURESAPI_EXPORT virtual ~FeaturesAPI_Union(); - INTERFACE_1(FeaturesPlugin_Union::ID(), + INTERFACE_2(FeaturesPlugin_Union::ID(), baseObjects, FeaturesPlugin_Union::BASE_OBJECTS_ID(), - ModelAPI_AttributeSelectionList, /** Base objects */) + ModelAPI_AttributeSelectionList, /** Base objects */, + fuzzyParam, FeaturesPlugin_Union::FUZZY_PARAM_ID(), + ModelAPI_AttributeDouble, /** Fuzzy parameter */) /// Modify base attribute of the feature. FEATURESAPI_EXPORT void setBase(const std::list& theBaseObjects); + /// Set fuzzy parameter. + FEATURESAPI_EXPORT + void setFuzzyValue(const ModelHighAPI_Double& theFuzzy); + /// Dump wrapped feature FEATURESAPI_EXPORT virtual void dump(ModelHighAPI_Dumper& theDumper) const; @@ -71,6 +78,7 @@ typedef std::shared_ptr UnionPtr; FEATURESAPI_EXPORT UnionPtr addUnion(const std::shared_ptr& thePart, const std::list& theBaseObjects, + const ModelHighAPI_Double& fuzzyParam = ModelHighAPI_Double(1.e-8), const bool keepSubResults = false); #endif // FeaturesAPI_Union_H_