0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / Geom / Geom_CartesianPoint.cxx
1 // Created on: 1993-03-10
2 // Created by: JCV
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <Geom_CartesianPoint.hxx>
19 #include <Geom_Geometry.hxx>
20 #include <gp_Pnt.hxx>
21 #include <gp_Trsf.hxx>
22 #include <Standard_Type.hxx>
23
24 IMPLEMENT_STANDARD_RTTIEXT(Geom_CartesianPoint,Geom_Point)
25
26 typedef Geom_CartesianPoint         CartesianPoint;
27 typedef gp_Ax1  Ax1;
28 typedef gp_Ax2  Ax2;
29 typedef gp_Vec  Vec;
30 typedef gp_Trsf Trsf;
31
32 //=======================================================================
33 //function : Geom_CartesianPoint
34 //purpose  : 
35 //=======================================================================
36
37 Geom_CartesianPoint::Geom_CartesianPoint (const gp_Pnt& P) : gpPnt(P) { }
38
39
40 //=======================================================================
41 //function : Geom_CartesianPoint
42 //purpose  : 
43 //=======================================================================
44
45 Geom_CartesianPoint::Geom_CartesianPoint (
46 const Standard_Real X, const Standard_Real Y, const Standard_Real Z) : gpPnt (X, Y ,Z) { }
47
48
49 //=======================================================================
50 //function : Copy
51 //purpose  : 
52 //=======================================================================
53
54 Handle(Geom_Geometry) Geom_CartesianPoint::Copy() const {
55
56   Handle(Geom_CartesianPoint) P;
57   P = new CartesianPoint (gpPnt);
58   return P; 
59 }
60
61
62 //=======================================================================
63 //function : SetCoord
64 //purpose  : 
65 //=======================================================================
66
67 void Geom_CartesianPoint::SetCoord (const Standard_Real X, const Standard_Real Y, const Standard_Real Z) {
68
69   gpPnt.SetCoord (X, Y, Z);
70 }
71
72
73 //=======================================================================
74 //function : SetPnt
75 //purpose  : 
76 //=======================================================================
77
78 void Geom_CartesianPoint::SetPnt (const gp_Pnt& P) {  gpPnt = P; }
79
80 //=======================================================================
81 //function : SetX
82 //purpose  : 
83 //=======================================================================
84
85 void Geom_CartesianPoint::SetX (const Standard_Real X) { gpPnt.SetX (X); }
86
87 //=======================================================================
88 //function : SetY
89 //purpose  : 
90 //=======================================================================
91
92 void Geom_CartesianPoint::SetY (const Standard_Real Y) { gpPnt.SetY (Y); }
93
94 //=======================================================================
95 //function : SetZ
96 //purpose  : 
97 //=======================================================================
98
99 void Geom_CartesianPoint::SetZ (const Standard_Real Z) { gpPnt.SetZ (Z); }
100
101
102 //=======================================================================
103 //function : Coord
104 //purpose  : 
105 //=======================================================================
106
107 void Geom_CartesianPoint::Coord (Standard_Real& X, Standard_Real& Y, Standard_Real& Z) const {
108
109   gpPnt.Coord (X, Y, Z);
110 }
111
112
113 //=======================================================================
114 //function : Pnt
115 //purpose  : 
116 //=======================================================================
117
118 gp_Pnt Geom_CartesianPoint::Pnt () const { return gpPnt; }
119
120 //=======================================================================
121 //function : X
122 //purpose  : 
123 //=======================================================================
124
125 Standard_Real Geom_CartesianPoint::X () const { return gpPnt.X(); }
126
127 //=======================================================================
128 //function : Y
129 //purpose  : 
130 //=======================================================================
131
132 Standard_Real Geom_CartesianPoint::Y () const { return gpPnt.Y(); }
133
134 //=======================================================================
135 //function : Z
136 //purpose  : 
137 //=======================================================================
138
139 Standard_Real Geom_CartesianPoint::Z () const { return gpPnt.Z(); }
140
141 //=======================================================================
142 //function : Transform
143 //purpose  : 
144 //=======================================================================
145
146 void Geom_CartesianPoint::Transform (const Trsf& T) { gpPnt.Transform (T); }
147
148
149
150
151
152