blob: 1ba748cb81c5a83417d04cf0005d63446c30a112 (
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
|
// File: Sweep_NumShape.lxx
// Created: Wed Feb 3 17:57:25 1993
// Author: Laurent BOURESCHE
// <lbo@phylox>
//=======================================================================
//function : Index
//purpose :
//=======================================================================
inline Standard_Integer Sweep_NumShape::Index()const
{
return myIndex;
}
//=======================================================================
//function : Type
//purpose :
//=======================================================================
inline TopAbs_ShapeEnum Sweep_NumShape::Type()const
{
return myType;
}
//=======================================================================
//function : Closed
//purpose :
//=======================================================================
inline Standard_Boolean Sweep_NumShape::Closed()const
{
return myClosed;
}
//=======================================================================
//function : BegInfinite
//purpose :
//=======================================================================
inline Standard_Boolean Sweep_NumShape::BegInfinite()const
{
return myBegInf;
}
//=======================================================================
//function : EndInfinite
//purpose :
//=======================================================================
inline Standard_Boolean Sweep_NumShape::EndInfinite()const
{
return myEndInf;
}
|