1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include "GeomData_Dir.h"
22 #include <GeomAPI_Dir.h>
23 #include <GeomAPI_XYZ.h>
25 #include <ModelAPI_Feature.h>
26 #include <ModelAPI_Data.h>
28 void GeomData_Dir::setValue(const double theX, const double theY, const double theZ)
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);
39 void GeomData_Dir::setValue(const std::shared_ptr<GeomAPI_Dir>& theDir)
41 setValue(theDir->x(), theDir->y(), theDir->z());
44 double GeomData_Dir::x() const
46 return myCoords->Value(0);
49 double GeomData_Dir::y() const
51 return myCoords->Value(1);
54 double GeomData_Dir::z() const
56 return myCoords->Value(2);
59 std::shared_ptr<GeomAPI_Dir> GeomData_Dir::dir()
61 return std::shared_ptr<GeomAPI_Dir>(
62 new GeomAPI_Dir(myCoords->Value(0), myCoords->Value(1), myCoords->Value(2)));
65 std::shared_ptr<GeomAPI_XYZ> GeomData_Dir::xyz()
67 return std::shared_ptr<GeomAPI_XYZ>(
68 new GeomAPI_XYZ(myCoords->Value(0), myCoords->Value(1), myCoords->Value(2)));
71 GeomData_Dir::GeomData_Dir(TDF_Label& theLabel)
77 void GeomData_Dir::reinit()
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);