Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / GeomData / GeomData_Dir.cpp
1 // File:        GeomData_Dir.cxx
2 // Created:     2 Apr 2014
3 // Author:      Mikhail PONIKAROV
4
5 #include "GeomData_Dir.h"
6 #include "GeomAPI_Dir.h"
7 #include <gp_Dir.hxx>
8 #include <ModelAPI_Feature.h>
9 #include <ModelAPI_Data.h>
10
11 using namespace std;
12
13 void GeomData_Dir::setValue(const double theX, const double theY, const double theZ)
14 {
15   if (!myIsInitialized || myCoords->Value(0) != theX || myCoords->Value(1) != theY || 
16        myCoords->Value(2) != theZ) {
17     myCoords->SetValue(0, theX);
18     myCoords->SetValue(1, theY);
19     myCoords->SetValue(2, theZ);
20     owner()->data()->sendAttributeUpdated(this);
21   }
22 }
23
24 void GeomData_Dir::setValue(const boost::shared_ptr<GeomAPI_Dir>& theDir)
25 {
26   setValue(theDir->x(), theDir->y(), theDir->z());
27   owner()->data()->sendAttributeUpdated(this);
28 }
29
30 double GeomData_Dir::x() const
31 {
32   return myCoords->Value(0);
33 }
34
35 double GeomData_Dir::y() const
36 {
37   return myCoords->Value(1);
38 }
39
40 double GeomData_Dir::z() const
41 {
42   return myCoords->Value(2);
43 }
44
45 boost::shared_ptr<GeomAPI_Dir> GeomData_Dir::dir()
46 {
47   return boost::shared_ptr<GeomAPI_Dir>(new GeomAPI_Dir(
48     myCoords->Value(0), myCoords->Value(1), myCoords->Value(2)));
49 }
50
51 GeomData_Dir::GeomData_Dir(TDF_Label& theLabel)
52 {
53   myIsInitialized = theLabel.FindAttribute(TDataStd_RealArray::GetID(), myCoords) == Standard_True;
54   if (!myIsInitialized) {
55     // create attribute: not initialized by value yet, just zero
56     myCoords = TDataStd_RealArray::Set(theLabel, 0, 2);
57   }
58 }