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
|
//--------------------------------------------------------------------
//
// File Name : IGESSolid_Ellipsoid.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESSolid_Ellipsoid.ixx>
#include <gp_GTrsf.hxx>
IGESSolid_Ellipsoid::IGESSolid_Ellipsoid () { }
void IGESSolid_Ellipsoid::Init
(const gp_XYZ& aSize, const gp_XYZ& aCenter,
const gp_XYZ& anXAxis, const gp_XYZ& anZAxis)
{
theSize = aSize;
theCenter = aCenter; // default (0,0,0)
theXAxis = anXAxis; // default (1,0,0)
theZAxis = anZAxis; // default (0,0,1)
InitTypeAndForm(168,0);
}
gp_XYZ IGESSolid_Ellipsoid::Size () const
{
return theSize;
}
Standard_Real IGESSolid_Ellipsoid::XLength () const
{
return theSize.X();
}
Standard_Real IGESSolid_Ellipsoid::YLength () const
{
return theSize.Y();
}
Standard_Real IGESSolid_Ellipsoid::ZLength () const
{
return theSize.Z();
}
gp_Pnt IGESSolid_Ellipsoid::Center () const
{
return gp_Pnt(theCenter);
}
gp_Pnt IGESSolid_Ellipsoid::TransformedCenter () const
{
if (!HasTransf()) return gp_Pnt(theCenter);
else
{
gp_XYZ tmp = theCenter;
Location().Transforms(tmp);
return gp_Pnt(tmp);
}
}
gp_Dir IGESSolid_Ellipsoid::XAxis () const
{
return gp_Dir(theXAxis);
}
gp_Dir IGESSolid_Ellipsoid::TransformedXAxis () const
{
if (!HasTransf()) return gp_Dir(theXAxis);
else
{
gp_XYZ tmp = theXAxis;
gp_GTrsf loc = Location();
loc.SetTranslationPart(gp_XYZ(0.,0.,0.));
loc.Transforms(tmp);
return gp_Dir(tmp);
}
}
gp_Dir IGESSolid_Ellipsoid::YAxis () const
{
return gp_Dir(theXAxis ^ theZAxis); // ^ overloaded
}
gp_Dir IGESSolid_Ellipsoid::TransformedYAxis () const
{
if (!HasTransf()) return gp_Dir(theXAxis ^ theZAxis);
else
{
gp_XYZ tmp = theXAxis ^ theZAxis;
gp_GTrsf loc = Location();
loc.SetTranslationPart(gp_XYZ(0.,0.,0.));
loc.Transforms(tmp);
return gp_Dir(tmp);
}
}
gp_Dir IGESSolid_Ellipsoid::ZAxis () const
{
return gp_Dir(theZAxis);
}
gp_Dir IGESSolid_Ellipsoid::TransformedZAxis () const
{
if (!HasTransf()) return gp_Dir(theZAxis);
else
{
gp_XYZ tmp = theZAxis;
gp_GTrsf loc = Location();
loc.SetTranslationPart(gp_XYZ(0.,0.,0.));
loc.Transforms(tmp);
return gp_Dir(tmp);
}
}
|