summaryrefslogtreecommitdiff
path: root/src/Geom/Geom_Axis2Placement.cxx
blob: f4bb1437892e3438f9b29f716044fa42383466a3 (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
168
169
170
171
172
173
174
175
// File:	Geom_Axis2Placement.cxx
// Created:	Tue Mar  9 19:27:59 1993
// Author:	JCV
//		<fid@phylox>
// Copyright:	Matra Datavision 1993

//File Geom_Axis2Placement.cxx, JCV 17/01/91

#include <Geom_Axis2Placement.ixx>

typedef Handle(Geom_Axis2Placement) Handle(Axis2Placement);
typedef Geom_Axis2Placement Axis2Placement;
typedef gp_Ax1  Ax1;
typedef gp_Dir  Dir;
typedef gp_Pnt  Pnt;
typedef gp_Trsf Trsf;
typedef gp_Vec  Vec;


//=======================================================================
//function : Copy
//purpose  : 
//=======================================================================

Handle(Geom_Geometry) Geom_Axis2Placement::Copy() const {

  Handle(Axis2Placement) A2;
  A2 = new Axis2Placement (axis.Location(), axis.Direction(), vxdir, vydir);
  return A2;
}


//=======================================================================
//function : Geom_Axis2Placement
//purpose  : 
//=======================================================================

Geom_Axis2Placement::Geom_Axis2Placement (const gp_Ax2& A2) {

   vxdir = A2. XDirection();
   vydir = A2. YDirection();
   axis  = A2.Axis();
}


//=======================================================================
//function : Geom_Axis2Placement
//purpose  : 
//=======================================================================

Geom_Axis2Placement::Geom_Axis2Placement (

const gp_Pnt& P,
const gp_Dir& N,
const gp_Dir& Vx) {

  axis = gp_Ax1 (P, N);
  vxdir = N.CrossCrossed (Vx, N);
  vydir = N.Crossed (vxdir);
}


//=======================================================================
//function : Geom_Axis2Placement
//purpose  : 
//=======================================================================

Geom_Axis2Placement::Geom_Axis2Placement (

const gp_Pnt& P,
const gp_Dir& Vz,
const gp_Dir& Vx,
const gp_Dir& Vy

) : vxdir (Vx), vydir (Vy) {

  axis.SetLocation (P);
  axis.SetDirection (Vz);
}


//=======================================================================
//function : XDirection
//purpose  : 
//=======================================================================

const gp_Dir& Geom_Axis2Placement::XDirection () const { return vxdir; }


//=======================================================================
//function : YDirection
//purpose  : 
//=======================================================================

const gp_Dir& Geom_Axis2Placement::YDirection () const {  return vydir; }


//=======================================================================
//function : SetAx2
//purpose  : 
//=======================================================================

void Geom_Axis2Placement::SetAx2 (const gp_Ax2& A2) {

   vxdir = A2.XDirection();
   vydir = A2.YDirection();
   axis  = A2.Axis();
}


//=======================================================================
//function : SetDirection
//purpose  : 
//=======================================================================

void Geom_Axis2Placement::SetDirection (const gp_Dir& V) {

   axis.SetDirection (V);
   vxdir = V.CrossCrossed (vxdir, V);
   vydir = V.Crossed (vxdir);
}


//=======================================================================
//function : SetXDirection
//purpose  : 
//=======================================================================

void Geom_Axis2Placement::SetXDirection (const gp_Dir& Vx) { 

  vxdir = axis.Direction().CrossCrossed (Vx, axis.Direction());
  vydir = axis.Direction().Crossed      (vxdir);
}



//=======================================================================
//function : SetYDirection
//purpose  : 
//=======================================================================

void Geom_Axis2Placement::SetYDirection (const gp_Dir& Vy) {

  vxdir = Vy.Crossed (axis.Direction());
  vydir = (axis.Direction()).Crossed (vxdir);
}


//=======================================================================
//function : Ax2
//purpose  : 
//=======================================================================

gp_Ax2 Geom_Axis2Placement::Ax2 () const {

  return gp_Ax2 (axis.Location(), axis.Direction(), vxdir);
}


//=======================================================================
//function : Transform
//purpose  : 
//=======================================================================

void Geom_Axis2Placement::Transform (const gp_Trsf& T) {

  //axis.Location().Transform (T);
  axis.SetLocation(axis.Location().Transformed(T)); // 10-03-93
  vxdir.Transform (T);
  vydir.Transform (T);
  axis.SetDirection (vxdir.Crossed (vydir));
}