![]() |
Open CASCADE Technology Reference Manual 8.0.0
|
Defines an Iterator on Entities. Allows considering of various criteria. More...
#include <Interface_EntityIterator.hxx>

Public Member Functions | |
| Interface_EntityIterator () | |
| Defines an empty iterator (see AddList & AddItem) | |
| Interface_EntityIterator (const occ::handle< NCollection_HSequence< occ::handle< Standard_Transient > > > &list) | |
| Defines an iterator on a list, directly i.e. without copying it. | |
| void | AddList (const occ::handle< NCollection_HSequence< occ::handle< Standard_Transient > > > &list) |
| Gets a list of entities and adds its to the iteration list. | |
| void | AddItem (const occ::handle< Standard_Transient > &anentity) |
| Adds to the iteration list a defined entity. | |
| void | GetOneItem (const occ::handle< Standard_Transient > &anentity) |
| same as AddItem (kept for compatibility) | |
| void | SelectType (const occ::handle< Standard_Type > &atype, const bool keep) |
| Selects entities with are Kind of a given type, keep only them (is keep is True) or reject only them (if keep is False) | |
| int | NbEntities () const |
| Returns count of entities which will be iterated on Calls Start if not yet done. | |
| int | NbTyped (const occ::handle< Standard_Type > &type) const |
| Returns count of entities of a given type (kind of) | |
| Interface_EntityIterator | Typed (const occ::handle< Standard_Type > &type) const |
| Returns the list of entities of a given type (kind of) | |
| virtual void | Start () const |
| Allows re-iteration (useless for the first iteration) | |
| bool | More () const |
| Says if there are other entities (vertices) to iterate the first time, calls Start. | |
| void | Next () const |
| Sets iteration to the next entity (vertex) to give. | |
| const occ::handle< Standard_Transient > & | Value () const |
| Returns the current Entity iterated, to be used by Interface tools. | |
| occ::handle< NCollection_HSequence< occ::handle< Standard_Transient > > > | Content () const |
| Returns the content of the Iterator, accessed through a Handle to be used by a frontal-engine logic Returns an empty Sequence if the Iterator is empty Calls Start if not yet done. | |
| void | Destroy () |
| Clears data of iteration. | |
| virtual | ~Interface_EntityIterator () |
| Destructor. | |
Protected Member Functions | |
| void | Reset () |
| Allows subclasses of EntityIterator to reevaluate an iteration. | |
Defines an Iterator on Entities. Allows considering of various criteria.
| Interface_EntityIterator::Interface_EntityIterator | ( | ) |
Defines an empty iterator (see AddList & AddItem)
| Interface_EntityIterator::Interface_EntityIterator | ( | const occ::handle< NCollection_HSequence< occ::handle< Standard_Transient > > > & | list | ) |
Defines an iterator on a list, directly i.e. without copying it.
|
virtual |
Destructor.
| void Interface_EntityIterator::AddItem | ( | const occ::handle< Standard_Transient > & | anentity | ) |
Adds to the iteration list a defined entity.
| void Interface_EntityIterator::AddList | ( | const occ::handle< NCollection_HSequence< occ::handle< Standard_Transient > > > & | list | ) |
Gets a list of entities and adds its to the iteration list.
| occ::handle< NCollection_HSequence< occ::handle< Standard_Transient > > > Interface_EntityIterator::Content | ( | ) | const |
Returns the content of the Iterator, accessed through a Handle to be used by a frontal-engine logic Returns an empty Sequence if the Iterator is empty Calls Start if not yet done.
| void Interface_EntityIterator::Destroy | ( | ) |
Clears data of iteration.
| void Interface_EntityIterator::GetOneItem | ( | const occ::handle< Standard_Transient > & | anentity | ) |
same as AddItem (kept for compatibility)
| bool Interface_EntityIterator::More | ( | ) | const |
Says if there are other entities (vertices) to iterate the first time, calls Start.
| int Interface_EntityIterator::NbEntities | ( | ) | const |
Returns count of entities which will be iterated on Calls Start if not yet done.
| int Interface_EntityIterator::NbTyped | ( | const occ::handle< Standard_Type > & | type | ) | const |
Returns count of entities of a given type (kind of)
| void Interface_EntityIterator::Next | ( | ) | const |
Sets iteration to the next entity (vertex) to give.
|
protected |
Allows subclasses of EntityIterator to reevaluate an iteration.
| void Interface_EntityIterator::SelectType | ( | const occ::handle< Standard_Type > & | atype, |
| const bool | keep ) |
Selects entities with are Kind of a given type, keep only them (is keep is True) or reject only them (if keep is False)
Allows re-iteration (useless for the first iteration)
| Interface_EntityIterator Interface_EntityIterator::Typed | ( | const occ::handle< Standard_Type > & | type | ) | const |
Returns the list of entities of a given type (kind of)
| const occ::handle< Standard_Transient > & Interface_EntityIterator::Value | ( | ) | const |
Returns the current Entity iterated, to be used by Interface tools.