summaryrefslogtreecommitdiff
path: root/inc/BRepSweep_Iterator.lxx
blob: 73ea6310709c322fe8aafbee7bbd0d712f49d057 (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
// File:	BRepSweep_Iterator.lxx
// Created:	Wed Jun  9 18:07:23 1993
// Author:	Laurent BOURESCHE
//		<lbo@phobox>



//=======================================================================
//function : More
//purpose  : 
//=======================================================================

inline Standard_Boolean  BRepSweep_Iterator::More()const 
{
  return myIterator.More();
}


//=======================================================================
//function : Value
//purpose  : 
//=======================================================================

inline const TopoDS_Shape&  BRepSweep_Iterator::Value()const 
{
  return myIterator.Value();
}


//=======================================================================
//function : Orientation
//purpose  : 
//=======================================================================

inline TopAbs_Orientation  BRepSweep_Iterator::Orientation()const 
{
  return Value().Orientation();
}