summaryrefslogtreecommitdiff
path: root/src/gp/gp.cxx
blob: dc94b11f6b4efcbbdb0b9a25070c5fd61618d93a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include <gp.ixx>

//=======================================================================
//function : Origin
//purpose  : 
//=======================================================================

const gp_Pnt&  gp::Origin()
{
  static gp_Pnt gp_Origin(0,0,0);
  return gp_Origin;
}

//=======================================================================
//function : DX
//purpose  : 
//=======================================================================

const gp_Dir&  gp::DX()
{
  static gp_Dir gp_DX(1,0,0);
  return gp_DX;
}

//=======================================================================
//function : DY
//purpose  : 
//=======================================================================

const gp_Dir&  gp::DY()
{
  static gp_Dir gp_DY(0,1,0);
  return gp_DY;
}

//=======================================================================
//function : DZ
//purpose  : 
//=======================================================================

const gp_Dir&  gp::DZ()
{
  static gp_Dir gp_DZ(0,0,1);
  return gp_DZ;
}

//=======================================================================
//function : OX
//purpose  : 
//=======================================================================

const gp_Ax1&  gp::OX()
{
  static gp_Ax1 gp_OX(gp_Pnt(0,0,0),gp_Dir(1,0,0));
  return gp_OX;
}

//=======================================================================
//function : OY
//purpose  : 
//=======================================================================

const gp_Ax1&  gp::OY()
{
  static gp_Ax1 gp_OY(gp_Pnt(0,0,0),gp_Dir(0,1,0));
  return gp_OY;
}

//=======================================================================
//function : OZ
//purpose  : 
//=======================================================================

const gp_Ax1&  gp::OZ()
{
  static gp_Ax1 gp_OZ(gp_Pnt(0,0,0),gp_Dir(0,0,1));
  return gp_OZ;
}

//=======================================================================
//function : XOY
//purpose  : 
//=======================================================================

const gp_Ax2&  gp::XOY()
{
  static gp_Ax2 gp_XOY(gp_Pnt(0,0,0),gp_Dir(0,0,1),gp_Dir(1,0,0));
  return gp_XOY;
}

//=======================================================================
//function : ZOX
//purpose  : 
//=======================================================================

const gp_Ax2&  gp::ZOX()
{
  static gp_Ax2 gp_ZOX(gp_Pnt(0,0,0),gp_Dir(0,1,0),gp_Dir(0,0,1));
  return gp_ZOX;
}

//=======================================================================
//function : YOZ
//purpose  : 
//=======================================================================

const gp_Ax2&  gp::YOZ()
{
  static gp_Ax2 gp_YOZ(gp_Pnt(0,0,0),gp_Dir(1,0,0),gp_Dir(0,1,0));
  return gp_YOZ;
}

//=======================================================================
//function : Origin2d
//purpose  : 
//=======================================================================

const gp_Pnt2d&  gp::Origin2d()
{
  static gp_Pnt2d gp_Origin2d(0,0);
  return gp_Origin2d;
}

//=======================================================================
//function : DX2d
//purpose  : 
//=======================================================================

const gp_Dir2d&  gp::DX2d()
{
  static gp_Dir2d gp_DX2d(1,0);
  return gp_DX2d;
}

//=======================================================================
//function : DY2d
//purpose  : 
//=======================================================================

const gp_Dir2d&  gp::DY2d()
{
  static gp_Dir2d gp_DY2d(0,1);
  return gp_DY2d;
}

//=======================================================================
//function : OX2d
//purpose  : 
//=======================================================================

const gp_Ax2d&  gp::OX2d()
{
  static gp_Ax2d gp_OX2d(gp_Pnt2d(0,0),gp_Dir2d(1,0));
  return gp_OX2d;
}

//=======================================================================
//function : OY2d
//purpose  : 
//=======================================================================

const gp_Ax2d&  gp::OY2d()
{
  static gp_Ax2d gp_OY2d(gp_Pnt2d(0,0),gp_Dir2d(0,1));
  return gp_OY2d;
}