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
117
118
119
120
|
#include <StepGeom_BezierSurfaceAndRationalBSplineSurface.ixx>
#include <StepGeom_BezierSurface.hxx>
#include <StepGeom_RationalBSplineSurface.hxx>
StepGeom_BezierSurfaceAndRationalBSplineSurface::StepGeom_BezierSurfaceAndRationalBSplineSurface () {}
void StepGeom_BezierSurfaceAndRationalBSplineSurface::Init(
const Handle(TCollection_HAsciiString)& aName,
const Standard_Integer aUDegree,
const Standard_Integer aVDegree,
const Handle(StepGeom_HArray2OfCartesianPoint)& aControlPointsList,
const StepGeom_BSplineSurfaceForm aSurfaceForm,
const StepData_Logical aUClosed,
const StepData_Logical aVClosed,
const StepData_Logical aSelfIntersect)
{
StepGeom_BSplineSurface::Init(aName, aUDegree, aVDegree, aControlPointsList, aSurfaceForm, aUClosed, aVClosed, aSelfIntersect);
}
void StepGeom_BezierSurfaceAndRationalBSplineSurface::Init(
const Handle(TCollection_HAsciiString)& aName,
const Standard_Integer aUDegree,
const Standard_Integer aVDegree,
const Handle(StepGeom_HArray2OfCartesianPoint)& aControlPointsList,
const StepGeom_BSplineSurfaceForm aSurfaceForm,
const StepData_Logical aUClosed,
const StepData_Logical aVClosed,
const StepData_Logical aSelfIntersect,
const Handle(StepGeom_BezierSurface)& aBezierSurface,
const Handle(StepGeom_RationalBSplineSurface)& aRationalBSplineSurface)
{
// --- classe own fields ---
bezierSurface = aBezierSurface;
rationalBSplineSurface = aRationalBSplineSurface;
// --- classe inherited fields ---
StepGeom_BSplineSurface::Init(aName, aUDegree, aVDegree, aControlPointsList, aSurfaceForm, aUClosed, aVClosed, aSelfIntersect);
}
void StepGeom_BezierSurfaceAndRationalBSplineSurface::Init(
const Handle(TCollection_HAsciiString)& aName,
const Standard_Integer aUDegree,
const Standard_Integer aVDegree,
const Handle(StepGeom_HArray2OfCartesianPoint)& aControlPointsList,
const StepGeom_BSplineSurfaceForm aSurfaceForm,
const StepData_Logical aUClosed,
const StepData_Logical aVClosed,
const StepData_Logical aSelfIntersect,
const Handle(TColStd_HArray2OfReal)& aWeightsData)
{
// --- classe inherited fields ---
StepGeom_BSplineSurface::Init(aName, aUDegree, aVDegree, aControlPointsList, aSurfaceForm, aUClosed, aVClosed, aSelfIntersect);
// --- ANDOR componant fields ---
bezierSurface = new StepGeom_BezierSurface();
bezierSurface->Init(aName, aUDegree, aVDegree, aControlPointsList, aSurfaceForm, aUClosed, aVClosed, aSelfIntersect);
// --- ANDOR componant fields ---
rationalBSplineSurface = new StepGeom_RationalBSplineSurface();
rationalBSplineSurface->Init(aName, aUDegree, aVDegree, aControlPointsList, aSurfaceForm, aUClosed, aVClosed, aSelfIntersect, aWeightsData);
}
void StepGeom_BezierSurfaceAndRationalBSplineSurface::SetBezierSurface(const Handle(StepGeom_BezierSurface)& aBezierSurface)
{
bezierSurface = aBezierSurface;
}
Handle(StepGeom_BezierSurface) StepGeom_BezierSurfaceAndRationalBSplineSurface::BezierSurface() const
{
return bezierSurface;
}
void StepGeom_BezierSurfaceAndRationalBSplineSurface::SetRationalBSplineSurface(const Handle(StepGeom_RationalBSplineSurface)& aRationalBSplineSurface)
{
rationalBSplineSurface = aRationalBSplineSurface;
}
Handle(StepGeom_RationalBSplineSurface) StepGeom_BezierSurfaceAndRationalBSplineSurface::RationalBSplineSurface() const
{
return rationalBSplineSurface;
}
//--- Specific Methods for AND classe field access ---
//--- Specific Methods for AND classe field access ---
void StepGeom_BezierSurfaceAndRationalBSplineSurface::SetWeightsData(const Handle(TColStd_HArray2OfReal)& aWeightsData)
{
rationalBSplineSurface->SetWeightsData(aWeightsData);
}
Handle(TColStd_HArray2OfReal) StepGeom_BezierSurfaceAndRationalBSplineSurface::WeightsData() const
{
return rationalBSplineSurface->WeightsData();
}
Standard_Real StepGeom_BezierSurfaceAndRationalBSplineSurface::WeightsDataValue(const Standard_Integer num1,const Standard_Integer num2) const
{
return rationalBSplineSurface->WeightsDataValue(num1,num2);
}
Standard_Integer StepGeom_BezierSurfaceAndRationalBSplineSurface::NbWeightsDataI () const
{
return rationalBSplineSurface->NbWeightsDataI ();
}
Standard_Integer StepGeom_BezierSurfaceAndRationalBSplineSurface::NbWeightsDataJ () const
{
return rationalBSplineSurface->NbWeightsDataJ ();
}
|