Salome HOME
d51fc3d9c54e297938879a84682a7f15eb0a1295
[modules/shaper.git] / src / FeaturesAPI / FeaturesAPI_PointCoordinates.cpp
1 // Copyright (C) 2018-2021  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_PointCoordinates.h"
21
22 #include <FeaturesPlugin_PointCoordinates.h>
23 #include <ModelAPI_AttributeDoubleArray.h>
24 #include <ModelHighAPI_Services.h>
25 #include <ModelHighAPI_Tools.h>
26
27 std::list<double> getPointCoordinates(const std::shared_ptr<ModelAPI_Document>& thePart,
28                                       const ModelHighAPI_Selection& thePoint)
29 {
30   FeaturePtr aPointCoordFeat = thePart->addFeature(FeaturesPlugin_PointCoordinates::ID());
31
32   fillAttribute(thePoint, aPointCoordFeat
33                       ->selection(FeaturesPlugin_PointCoordinates::POINT_SELECTED_ID()));
34   std::list<double> res;
35
36   // obtain result
37   AttributeDoubleArrayPtr aResult = std::dynamic_pointer_cast<ModelAPI_AttributeDoubleArray>(
38       aPointCoordFeat->attribute(FeaturesPlugin_PointCoordinates::RESULT_VALUES_ID()));
39
40   for ( int i : {0, 1, 2})
41     res.push_back( aResult->value(i));
42
43   return res;
44 }