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