blob: 7ad09df36dbd377df3f025a165c2a6852ae2db6e (
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
65
66
67
68
69
70
71
72
73
74
75
76
|
// File: HatchGen_ElementGen.gxx
// Created: Wed Nov 3 17:08:32 1993
// Author: Jean Marc LACHAUME
// <jml@phylox>
//=======================================================================
// Function : HatchGen_ElementGen
// Purpose : Magic Constructor.
//=======================================================================
HatchGen_ElementGen::HatchGen_ElementGen (const HatchGen_ElementGen& Other)
: myCurve(Other.myCurve), myOrientation(Other.myOrientation) {
}
//=======================================================================
// Function : HatchGen_ElementGen
// Purpose : Empty Constructor.
//=======================================================================
HatchGen_ElementGen::HatchGen_ElementGen () {
}
//=======================================================================
// Function : HatchGen_ElementGen
// Purpose : Constructor.
//=======================================================================
HatchGen_ElementGen::HatchGen_ElementGen (const TheElementCurve& Curve,
const TopAbs_Orientation Orientation) :
myCurve (Curve),
myOrientation (Orientation)
{
}
//=======================================================================
// Function : Curve
// Purpose : Returns the curve associated to the hatching.
//=======================================================================
const TheElementCurve& HatchGen_ElementGen::Curve () const
{
return myCurve ;
}
//=======================================================================
// Function : ChangeCurve
// Purpose : Returns the curve associated to the hatching.
//=======================================================================
TheElementCurve& HatchGen_ElementGen::ChangeCurve ()
{
return myCurve ;
}
//=======================================================================
// Function : Orientation
// Purpose : Sets the orientation of the element.
//=======================================================================
void HatchGen_ElementGen::Orientation (const TopAbs_Orientation Orientation)
{
myOrientation = Orientation ;
}
//=======================================================================
// Function : Orientation
// Purpose : Returns the orientation of the element.
//=======================================================================
TopAbs_Orientation HatchGen_ElementGen::Orientation () const
{
return myOrientation ;
}
|