summaryrefslogtreecommitdiff
path: root/inc/BRepClass_FaceExplorer.lxx
blob: 395a8d0d8ed2e8b3161f05c63c908a9d30c189f2 (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
// File:	BRepClass_FaceExplorer.lxx
// Created:	Mon Jan 25 19:12:49 1993
// Author:	Remi LEQUETTE
//		<rle@phylox>

//=======================================================================
//function : MoreWires
//purpose  : 
//=======================================================================

inline Standard_Boolean  BRepClass_FaceExplorer::MoreWires()const 
{
  return myWExplorer.More();
}

//=======================================================================
//function : NextWire
//purpose  : 
//=======================================================================

inline void BRepClass_FaceExplorer::NextWire()
{
  myWExplorer.Next();
}

//=======================================================================
//function : MoreEdges
//purpose  : 
//=======================================================================

inline Standard_Boolean  BRepClass_FaceExplorer::MoreEdges()const 
{
  return myEExplorer.More();
}

//=======================================================================
//function : NextEdge
//purpose  : 
//=======================================================================

inline void BRepClass_FaceExplorer::NextEdge()
{
  myEExplorer.Next();
}