blob: f5f5c45067031671e3e7dd02f0250e2343ff1b83 (
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.cxx
// Created: Wed Jun 9 17:54:27 1993
// Author: Laurent BOURESCHE
// <lbo@phobox>
#include <BRepSweep_Iterator.ixx>
//=======================================================================
//function : BRepSweep_Iterator
//purpose :
//=======================================================================
BRepSweep_Iterator::BRepSweep_Iterator()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void BRepSweep_Iterator::Init(const TopoDS_Shape& aShape)
{
myIterator.Initialize(aShape);
}
//=======================================================================
//function : Next
//purpose :
//=======================================================================
void BRepSweep_Iterator::Next()
{
myIterator.Next();
}
|