blob: 016c395efcc774e114ce0e94a6b173fa8b9bc25b (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESSolid_SphericalSurface.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESSolid_SphericalSurface.ixx>
#include <gp_GTrsf.hxx>
IGESSolid_SphericalSurface::IGESSolid_SphericalSurface () { }
void IGESSolid_SphericalSurface::Init
(const Handle(IGESGeom_Point)& aCenter,
const Standard_Real aRadius,
const Handle(IGESGeom_Direction)& anAxis,
const Handle(IGESGeom_Direction)& aRefdir)
{
theCenter = aCenter;
theRadius = aRadius;
theAxis = anAxis;
theRefDir = aRefdir;
InitTypeAndForm(196, (theRefDir.IsNull() ? 0 : 1) );
}
Handle(IGESGeom_Point) IGESSolid_SphericalSurface::Center () const
{
return theCenter;
}
gp_Pnt IGESSolid_SphericalSurface::TransformedCenter () const
{
if (!HasTransf()) return theCenter->Value();
else
{
gp_XYZ tmp = (theCenter->Value()).XYZ();
Location().Transforms(tmp);
return gp_Pnt(tmp);
}
}
Standard_Real IGESSolid_SphericalSurface::Radius () const
{
return theRadius;
}
Handle(IGESGeom_Direction) IGESSolid_SphericalSurface::Axis () const
{
return theAxis;
}
Handle(IGESGeom_Direction) IGESSolid_SphericalSurface::ReferenceDir () const
{
return theRefDir;
}
Standard_Boolean IGESSolid_SphericalSurface::IsParametrised () const
{
return !(theRefDir.IsNull());
}
|