mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-10 09:30:48 +08:00
47 lines
1.2 KiB
Plaintext
Executable File
47 lines
1.2 KiB
Plaintext
Executable File
// 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();
|
|
}
|
|
|
|
|