Salome HOME
c88c717f1f1983a93c9654aea940adb314318824
[modules/shaper.git] / src / SketchAPI / SketchAPI_Point.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 "SketchAPI_Point.h"
21 //--------------------------------------------------------------------------------------
22 #include <GeomAPI_Pnt2d.h>
23 //--------------------------------------------------------------------------------------
24 #include <ModelHighAPI_Dumper.h>
25 #include <ModelHighAPI_Selection.h>
26 #include <ModelHighAPI_Tools.h>
27 //--------------------------------------------------------------------------------------
28 SketchAPI_Point::SketchAPI_Point(
29     const std::shared_ptr<ModelAPI_Feature> & theFeature)
30 : SketchAPI_SketchEntity(theFeature)
31 {
32   initialize();
33 }
34
35 SketchAPI_Point::SketchAPI_Point(
36     const std::shared_ptr<ModelAPI_Feature> & theFeature,
37     double theX, double theY)
38 : SketchAPI_SketchEntity(theFeature)
39 {
40   if (initialize()) {
41     setCoordinates(theX, theY);
42   }
43 }
44
45 SketchAPI_Point::SketchAPI_Point(
46     const std::shared_ptr<ModelAPI_Feature> & theFeature,
47     const std::shared_ptr<GeomAPI_Pnt2d> & thePoint)
48 : SketchAPI_SketchEntity(theFeature)
49 {
50   if (initialize()) {
51     setCoordinates(thePoint);
52   }
53 }
54
55 SketchAPI_Point::SketchAPI_Point(
56     const std::shared_ptr<ModelAPI_Feature> & theFeature,
57     const ModelHighAPI_Selection & theExternal )
58 : SketchAPI_SketchEntity(theFeature)
59 {
60   if (initialize()) {
61     setByExternal(theExternal);
62   }
63 }
64
65 SketchAPI_Point::SketchAPI_Point(
66     const std::shared_ptr<ModelAPI_Feature> & theFeature,
67     const std::wstring & theExternalName )
68 : SketchAPI_SketchEntity(theFeature)
69 {
70   if (initialize()) {
71     setByExternalName(theExternalName);
72   }
73 }
74
75 SketchAPI_Point::~SketchAPI_Point()
76 {
77
78 }
79
80 //--------------------------------------------------------------------------------------
81 void SketchAPI_Point::setCoordinates(
82     double theX, double theY)
83 {
84   fillAttribute(coordinates(), theX, theY);
85
86   execute();
87 }
88
89 void SketchAPI_Point::setCoordinates(
90     const std::shared_ptr<GeomAPI_Pnt2d> & thePoint)
91 {
92   fillAttribute(thePoint, coordinates());
93
94   execute();
95 }
96
97 void SketchAPI_Point::setByExternal(const ModelHighAPI_Selection & theExternal)
98 {
99   fillAttribute(theExternal, external());
100
101   execute();
102 }
103
104 void SketchAPI_Point::setByExternalName(const std::wstring & theExternalName)
105 {
106   fillAttribute(ModelHighAPI_Selection("VERTEX", theExternalName), external());
107
108   execute();
109 }
110
111 //--------------------------------------------------------------------------------------
112
113 void SketchAPI_Point::dump(ModelHighAPI_Dumper& theDumper) const
114 {
115   if (isCopy())
116     return; // no need to dump copied feature
117
118   FeaturePtr aBase = feature();
119   const std::string& aSketchName = theDumper.parentName(aBase);
120
121   AttributeSelectionPtr anExternal = aBase->selection(SketchPlugin_SketchEntity::EXTERNAL_ID());
122   if (anExternal->context()) {
123     // point is external
124     theDumper << aBase << " = " << aSketchName << ".addPoint(" << anExternal << ")" << std::endl;
125   } else {
126     // point given by coordinates
127     std::shared_ptr<GeomDataAPI_Point2D> aPoint = coordinates();
128     theDumper << aBase << " = " << aSketchName << ".addPoint(" << aPoint << ")" << std::endl;
129   }
130   // dump "auxiliary" flag if necessary
131   SketchAPI_SketchEntity::dump(theDumper);
132 }