blob: 0869683c6acdf143ff7378dd6d29c87fdcf9fb96 (
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
|
//--------------------------------------------------------------------
//
// File Name : IGESGeom_CurveOnSurface.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESGeom_CurveOnSurface.ixx>
IGESGeom_CurveOnSurface::IGESGeom_CurveOnSurface () { }
void IGESGeom_CurveOnSurface::Init
(const Standard_Integer aMode,
const Handle(IGESData_IGESEntity)& aSurface,
const Handle(IGESData_IGESEntity)& aCurveUV,
const Handle(IGESData_IGESEntity)& aCurve3D,
const Standard_Integer aPreference)
{
theCreationMode = aMode;
theSurface = aSurface;
theCurveUV = aCurveUV;
theCurve3D = aCurve3D;
thePreferenceMode = aPreference;
InitTypeAndForm(142,0);
}
Standard_Integer IGESGeom_CurveOnSurface::CreationMode () const
{
return theCreationMode;
}
Handle(IGESData_IGESEntity) IGESGeom_CurveOnSurface::Surface () const
{
return theSurface;
}
Handle(IGESData_IGESEntity) IGESGeom_CurveOnSurface::CurveUV () const
{
return theCurveUV;
}
Handle(IGESData_IGESEntity) IGESGeom_CurveOnSurface::Curve3D () const
{
return theCurve3D;
}
Standard_Integer IGESGeom_CurveOnSurface::PreferenceMode () const
{
return thePreferenceMode;
}
|