Salome HOME
ca2c8bb0e34dca83d0de1fbd1fb371890a193f02
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_LimitTolerance.cpp
1 // Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "FeaturesAPI_LimitTolerance.h"
21
22 #include <ModelHighAPI_Double.h>
23 #include <ModelHighAPI_Dumper.h>
24 #include <ModelHighAPI_Tools.h>
25
26 //==================================================================================================
27 FeaturesAPI_LimitTolerance::FeaturesAPI_LimitTolerance(const std::shared_ptr<ModelAPI_Feature>& theFeature)
28 : ModelHighAPI_Interface(theFeature)
29 {
30   initialize();
31 }
32
33 //==================================================================================================
34 FeaturesAPI_LimitTolerance::FeaturesAPI_LimitTolerance(const std::shared_ptr<ModelAPI_Feature>& theFeature,
35                                                        const ModelHighAPI_Selection& theMainObject,
36                                                        const ModelHighAPI_Double& theTolerance)
37 : ModelHighAPI_Interface(theFeature)
38 {
39   if (initialize())
40   {
41     setMainObject(theMainObject);
42     setTolerance(theTolerance);
43   }
44 }
45
46 //==================================================================================================
47 FeaturesAPI_LimitTolerance::~FeaturesAPI_LimitTolerance()
48 {
49 }
50
51 //==================================================================================================
52 void FeaturesAPI_LimitTolerance::setMainObject(const ModelHighAPI_Selection& theMainObject)
53 {
54   fillAttribute(theMainObject, mainObject());
55   execute();
56 }
57
58 //==================================================================================================
59 void FeaturesAPI_LimitTolerance::setTolerance(const ModelHighAPI_Double& theTolerance)
60 {
61   fillAttribute(theTolerance, tolerance());
62   execute();
63 }
64
65 //==================================================================================================
66 void FeaturesAPI_LimitTolerance::dump(ModelHighAPI_Dumper& theDumper) const
67 {
68   FeaturePtr aBase = feature();
69   const std::string& aDocName = theDumper.name(aBase->document());
70
71   AttributeSelectionPtr anAttrObject = aBase->selection(FeaturesPlugin_LimitTolerance::OBJECT_ID());
72   theDumper << aBase << " = model.addLimitTolerance(" << aDocName << ", " << anAttrObject;
73
74   AttributeDoublePtr anAttrTolerance = aBase->real(FeaturesPlugin_LimitTolerance::TOLERANCE_ID());
75   theDumper << ", " << anAttrTolerance;
76
77   theDumper << ")" << std::endl;
78 }
79
80 //==================================================================================================
81 LimitTolerancePtr addLimitTolerance(const std::shared_ptr<ModelAPI_Document>& thePart,
82                                     const ModelHighAPI_Selection& theMainObject,
83                                     const ModelHighAPI_Double& theTolerance)
84 {
85   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature(FeaturesAPI_LimitTolerance::ID());
86   LimitTolerancePtr aLimitTolerance;
87   aLimitTolerance.reset(new FeaturesAPI_LimitTolerance(aFeature, theMainObject, theTolerance));
88   return aLimitTolerance;
89 }