blob: 216b91c5e60088b18131f951af72a490a4602626 (
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
|
// File: HLRBRep_Algo.cxx
// Created: Thu Aug 4 10:18:44 1994
// Author: Christophe MARION
// <cma@ecolox>
#define No_Standard_OutOfRange
#include <HLRBRep_Algo.ixx>
#include <HLRBRep_ShapeBounds.hxx>
#include <HLRTopoBRep_OutLiner.hxx>
//=======================================================================
//function : HLRBRep_Algo
//purpose :
//=======================================================================
HLRBRep_Algo::HLRBRep_Algo ()
{}
//=======================================================================
//function : HLRBRep_Algo
//purpose :
//=======================================================================
HLRBRep_Algo::HLRBRep_Algo (const Handle(HLRBRep_Algo)& A) :
HLRBRep_InternalAlgo(A)
{}
//=======================================================================
//function : Add
//purpose :
//=======================================================================
void HLRBRep_Algo::Add (const TopoDS_Shape& S,
const Handle(MMgt_TShared)& SData,
const Standard_Integer nbIso)
{
Load(new HLRTopoBRep_OutLiner(S),SData,nbIso);
}
//=======================================================================
//function : Add
//purpose :
//=======================================================================
void HLRBRep_Algo::Add (const TopoDS_Shape& S,
const Standard_Integer nbIso)
{
Load(new HLRTopoBRep_OutLiner(S),nbIso);
}
//=======================================================================
//function : Index
//purpose :
//=======================================================================
Standard_Integer HLRBRep_Algo::Index (const TopoDS_Shape& S)
{
Standard_Integer n = NbShapes();
for (Standard_Integer i = 1; i <= n; i++) {
if (ShapeBounds(i).Shape()->OriginalShape() == S) return i;
if (ShapeBounds(i).Shape()->OutLinedShape() == S) return i;
}
return 0;
}
//=======================================================================
//function : OutLinedShapeNullify
//purpose :
//=======================================================================
void HLRBRep_Algo::OutLinedShapeNullify ()
{
Standard_Integer n = NbShapes();
for (Standard_Integer i = 1; i <= n; i++) {
ShapeBounds(i).Shape()->OutLinedShape(TopoDS_Shape());
ShapeBounds(i).Shape()->DataStructure().Clear();
}
}
|