blob: 776d81f036cd3e86e33e4139b2a9c3d954b675c1 (
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
77
78
79
80
81
82
83
84
85
86
87
|
// File: BRepSweep_Tool.cxx
// Created: Wed Jun 9 18:18:22 1993
// Author: Laurent BOURESCHE
// <lbo@phobox>
#include <BRepSweep_Tool.ixx>
#include <TopExp.hxx>
//=======================================================================
//function : BRepSweep_Tool
//purpose :
//=======================================================================
BRepSweep_Tool::BRepSweep_Tool(const TopoDS_Shape& aShape)
{
TopExp::MapShapes(aShape,myMap);
}
//=======================================================================
//function : NbShapes
//purpose :
//=======================================================================
Standard_Integer BRepSweep_Tool::NbShapes()const
{
return myMap.Extent();
}
//=======================================================================
//function : Index
//purpose :
//=======================================================================
Standard_Integer BRepSweep_Tool::Index(const TopoDS_Shape& aShape)const
{
if(!myMap.Contains(aShape)) return 0;
return myMap.FindIndex(aShape);
}
//=======================================================================
//function : Shape
//purpose :
//=======================================================================
TopoDS_Shape BRepSweep_Tool::Shape(const Standard_Integer anIndex)const
{
return myMap.FindKey(anIndex);
}
//=======================================================================
//function : Type
//purpose :
//=======================================================================
TopAbs_ShapeEnum BRepSweep_Tool::Type(const TopoDS_Shape& aShape)const
{
return aShape.ShapeType();
}
//=======================================================================
//function : Orientation
//purpose :
//=======================================================================
TopAbs_Orientation BRepSweep_Tool::Orientation
(const TopoDS_Shape& aShape)const
{
return aShape.Orientation();
}
//=======================================================================
//function : SetOrientation
//purpose :
//=======================================================================
void BRepSweep_Tool::SetOrientation (TopoDS_Shape& aShape,
const TopAbs_Orientation Or)const
{
aShape.Orientation(Or);
}
|