summaryrefslogtreecommitdiff
path: root/inc/BRepCheck_Result.lxx
blob: 65b9efb30ade3f3429a76c761175659c7088ee21 (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
// File:	BRepCheck_Result.lxx
// Created:	Thu Dec  7 10:49:37 1995
// Author:	Jacques GOUSSARD
//		<jag@bravox>


//=======================================================================
//function : Status
//purpose  : 
//=======================================================================

inline const BRepCheck_ListOfStatus& BRepCheck_Result::Status() const
{
  return myMap(myShape);
}

//=======================================================================
//function : IsMinimum
//purpose  : 
//=======================================================================

inline Standard_Boolean BRepCheck_Result::IsMinimum() const
{
  return myMin;
}

//=======================================================================
//function : IsBlind
//purpose  : 
//=======================================================================

inline Standard_Boolean BRepCheck_Result::IsBlind() const
{
  return myBlind;
}


//=======================================================================
//function : MoreShapeInContext
//purpose  : 
//=======================================================================

inline Standard_Boolean BRepCheck_Result::MoreShapeInContext () const
{
  return myIter.More();
}


//=======================================================================
//function : ContextualShape
//purpose  : 
//=======================================================================

inline const TopoDS_Shape& BRepCheck_Result::ContextualShape () const
{
  return myIter.Key();
}


//=======================================================================
//function : StatusOnShape
//purpose  : 
//=======================================================================

inline const BRepCheck_ListOfStatus& BRepCheck_Result::StatusOnShape () const
{
  return myIter.Value();
}