SHAPER 9.16.0
GeomData_Dir.h
1// Copyright (C) 2014-2026 CEA, EDF
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#ifndef GeomData_Dir_H_
21#define GeomData_Dir_H_
22
23#include "GeomData.h"
24#include "GeomDataAPI_Dir.h"
25#include <TDataStd_RealArray.hxx>
26#include <TDF_Label.hxx>
27#include <memory>
28
29class GeomAPI_Dir;
30class GeomAPI_XYZ;
31
37{
38 TDF_Label myLab;
39 Handle_TDataStd_RealArray myCoords;
40 public:
42 GEOMDATA_EXPORT virtual void setValue(const double theX, const double theY, const double theZ);
44 GEOMDATA_EXPORT virtual void setValue(const std::shared_ptr<GeomAPI_Dir>& theDir);
45
47 GEOMDATA_EXPORT virtual double x() const;
49 GEOMDATA_EXPORT virtual double y() const;
51 GEOMDATA_EXPORT virtual double z() const;
53 GEOMDATA_EXPORT virtual std::shared_ptr<GeomAPI_Dir> dir();
55 GEOMDATA_EXPORT virtual std::shared_ptr<GeomAPI_XYZ> xyz();
56
58 GEOMDATA_EXPORT virtual bool isInitialized();
59
61 GEOMDATA_EXPORT virtual void reset();
62
63 protected:
65 GEOMDATA_EXPORT GeomData_Dir(TDF_Label& theLabel);
67 virtual void reinit();
68
69 friend class Model_Data;
70};
71
72#endif
3D direction defined by three normalized coordinates
Definition: GeomAPI_Dir.h:34
3 coordinates: they may represent vector or point or something else
Definition: GeomAPI_XYZ.h:32
Attribute that contains 3D direction coordinates.
Definition: GeomDataAPI_Dir.h:35
Attribute that contains direction.
Definition: GeomData_Dir.h:37
virtual void setValue(const double theX, const double theY, const double theZ)
Defines the double value.
Definition: GeomData_Dir.cpp:27
virtual double y() const
Returns the Y double value.
Definition: GeomData_Dir.cpp:48
virtual std::shared_ptr< GeomAPI_XYZ > xyz()
Returns the coordinates of this attribute.
Definition: GeomData_Dir.cpp:64
virtual double z() const
Returns the Z double value.
Definition: GeomData_Dir.cpp:53
virtual bool isInitialized()
Returns true if the direction is initialized.
Definition: GeomData_Dir.cpp:97
virtual void reset()
Resets attribute to default state.
Definition: GeomData_Dir.cpp:86
GeomData_Dir(TDF_Label &theLabel)
Initializes attributes.
Definition: GeomData_Dir.cpp:70
virtual double x() const
Returns the X double value.
Definition: GeomData_Dir.cpp:43
virtual std::shared_ptr< GeomAPI_Dir > dir()
Returns the direction of this attribute.
Definition: GeomData_Dir.cpp:58
virtual void reinit()
Reinitializes the internal state of the attribute (may be needed on undo/redo, abort,...
Definition: GeomData_Dir.cpp:76
General object of the application that allows to get/set attributes from the document and compute res...
Definition: Model_Data.h:62