Salome HOME
Merge branch 'master' of https://codev-tuleap.cea.fr/plugins/git/salome/shaper
[modules/shaper.git] / src / GeomData / GeomData_Dir.cpp
1 // Copyright (C) 2014-2017  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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "GeomData_Dir.h"
22 #include <GeomAPI_Dir.h>
23 #include <GeomAPI_XYZ.h>
24 #include <gp_Dir.hxx>
25 #include <ModelAPI_Feature.h>
26 #include <ModelAPI_Data.h>
27
28 void GeomData_Dir::setValue(const double theX, const double theY, const double theZ)
29 {
30   if (!myIsInitialized || myCoords->Value(0) != theX || myCoords->Value(1) != theY
31       || myCoords->Value(2) != theZ) {
32     myCoords->SetValue(0, theX);
33     myCoords->SetValue(1, theY);
34     myCoords->SetValue(2, theZ);
35     owner()->data()->sendAttributeUpdated(this);
36   }
37 }
38
39 void GeomData_Dir::setValue(const std::shared_ptr<GeomAPI_Dir>& theDir)
40 {
41   setValue(theDir->x(), theDir->y(), theDir->z());
42 }
43
44 double GeomData_Dir::x() const
45 {
46   return myCoords->Value(0);
47 }
48
49 double GeomData_Dir::y() const
50 {
51   return myCoords->Value(1);
52 }
53
54 double GeomData_Dir::z() const
55 {
56   return myCoords->Value(2);
57 }
58
59 std::shared_ptr<GeomAPI_Dir> GeomData_Dir::dir()
60 {
61   return std::shared_ptr<GeomAPI_Dir>(
62       new GeomAPI_Dir(myCoords->Value(0), myCoords->Value(1), myCoords->Value(2)));
63 }
64
65 std::shared_ptr<GeomAPI_XYZ> GeomData_Dir::xyz()
66 {
67   return std::shared_ptr<GeomAPI_XYZ>(
68       new GeomAPI_XYZ(myCoords->Value(0), myCoords->Value(1), myCoords->Value(2)));
69 }
70
71 GeomData_Dir::GeomData_Dir(TDF_Label& theLabel)
72 {
73   myLab = theLabel;
74   reinit();
75 }
76
77 void GeomData_Dir::reinit()
78 {
79   myIsInitialized = myLab.FindAttribute(TDataStd_RealArray::GetID(), myCoords) == Standard_True;
80   if (!myIsInitialized) {
81     // create attribute: not initialized by value yet, just zero
82     myCoords = TDataStd_RealArray::Set(myLab, 0, 2);
83   }
84 }