blob: 1ff55bdb9208594f61ca1acde4b6b545df76dc7a (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESSolid_ConicalSurface.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESSolid_ConicalSurface.ixx>
IGESSolid_ConicalSurface::IGESSolid_ConicalSurface () { }
void IGESSolid_ConicalSurface::Init
(const Handle(IGESGeom_Point)& aLocation,
const Handle(IGESGeom_Direction)& anAxis,
const Standard_Real aRadius, const Standard_Real anAngle,
const Handle(IGESGeom_Direction)& aRefdir)
{
theLocationPoint = aLocation;
theAxis = anAxis;
theRadius = aRadius;
theAngle = anAngle;
theRefDir = aRefdir;
InitTypeAndForm(194, (theRefDir.IsNull() ? 0 : 1));
}
Handle(IGESGeom_Point) IGESSolid_ConicalSurface::LocationPoint () const
{
return theLocationPoint;
}
Handle(IGESGeom_Direction) IGESSolid_ConicalSurface::Axis () const
{
return theAxis;
}
Standard_Real IGESSolid_ConicalSurface::Radius () const
{
return theRadius;
}
Standard_Real IGESSolid_ConicalSurface::SemiAngle () const
{
return theAngle;
}
Handle(IGESGeom_Direction) IGESSolid_ConicalSurface::ReferenceDir () const
{
return theRefDir;
}
Standard_Boolean IGESSolid_ConicalSurface::IsParametrised () const
{
return (!theRefDir.IsNull());
}
|