blob: e58cc5de5915a2b513a6104b7235f65fde317f93 (
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
88
89
90
91
92
|
// File: ShapeAnalysis_BoxBndTree.hxx
// Created: 14.02.05 12:38:56
// Author: Alexey MORENOV
// Copyright: Open CASCADE 2005
#ifndef ShapeAnalysis_BoxBndTree_HeaderFile
#define ShapeAnalysis_BoxBndTree_HeaderFile
#include <NCollection_UBTree.hxx>
#include <Bnd_Box.hxx>
#include <gp_Pnt.hxx>
#include <MMgt_TShared.hxx>
#include <TopTools_HArray1OfShape.hxx>
#include <ShapeExtend.hxx>
#include <ShapeExtend_Status.hxx>
#include <TopoDS_Vertex.hxx>
#include <TColStd_MapOfInteger.hxx>
typedef NCollection_UBTree <Standard_Integer , Bnd_Box> ShapeAnalysis_BoxBndTree;
class ShapeAnalysis_BoxBndTreeSelector
: public ShapeAnalysis_BoxBndTree::Selector
{
public:
ShapeAnalysis_BoxBndTreeSelector
(Handle (TopTools_HArray1OfShape) theSeq,
Standard_Boolean theShared)
: mySeq(theSeq), myShared(theShared), myStatus(ShapeExtend::EncodeStatus (ShapeExtend_OK)),
myNb(0), myTol(1e-7), myMin3d(1e-7){}
void DefineBoxes (const Bnd_Box& theFBox, const Bnd_Box& theLBox)
{ myFBox = theFBox;
myLBox = theLBox; }
void DefineVertexes (TopoDS_Vertex theVf, TopoDS_Vertex theVl)
{ myFVertex = theVf;
myLVertex = theVl;
myStatus=ShapeExtend::EncodeStatus (ShapeExtend_OK);
}
void DefinePnt (gp_Pnt theFPnt, gp_Pnt theLPnt)
{ myFPnt = theFPnt;
myLPnt = theLPnt;
myStatus =ShapeExtend::EncodeStatus (ShapeExtend_OK);
}
Standard_Integer GetNb ()
{ return myNb; }
void SetNb (Standard_Integer theNb)
{ myNb = theNb; }
void LoadList(Standard_Integer elem)
{ myList.Add(elem); }
void SetStop ()
{ myStop = Standard_False; }
void SetTolerance (Standard_Real theTol)
{
myTol = theTol;
myMin3d = theTol;
myStatus=ShapeExtend::EncodeStatus (ShapeExtend_OK);
}
Standard_Boolean ContWire(Standard_Integer nbWire)
{ return myList.Contains(nbWire); }
inline Standard_Boolean LastCheckStatus (const ShapeExtend_Status Status) const
{ return ShapeExtend::DecodeStatus ( myStatus, Status ); }
Standard_Boolean Reject (const Bnd_Box& theBnd) const;
Standard_Boolean Accept (const Standard_Integer &);
private:
Bnd_Box myFBox;
Bnd_Box myLBox;
Handle (TopTools_HArray1OfShape) mySeq;
Standard_Boolean myShared;
Standard_Integer myStatus;
Standard_Integer myNb;
TopoDS_Vertex myFVertex;
TopoDS_Vertex myLVertex;
gp_Pnt myFPnt;
gp_Pnt myLPnt;
TColStd_MapOfInteger myList;
Standard_Real myTol;
Standard_Real myMin3d;
};
#endif
|