|
| BRepMesh_MeshTool (const Handle< BRepMesh_DataStructureOfDelaun > &theStructure) |
| Constructor. Initializes tool by the given data structure. More...
|
|
virtual | ~BRepMesh_MeshTool () |
| Destructor. More...
|
|
const Handle< BRepMesh_DataStructureOfDelaun > & | GetStructure () const |
| Returns data structure manipulated by this tool. More...
|
|
void | DumpTriangles (const Standard_CString theFileName, IMeshData::MapOfInteger *theTriangles) |
| Dumps triangles to specified file. More...
|
|
void | AddAndLegalizeTriangle (const Standard_Integer thePoint1, const Standard_Integer thePoint2, const Standard_Integer thePoint3) |
| Adds new triangle with specified nodes to mesh. Legalizes triangle in case if it violates circle criteria. More...
|
|
void | AddTriangle (const Standard_Integer thePoint1, const Standard_Integer thePoint2, const Standard_Integer thePoint3, Standard_Integer(&theEdges)[3]) |
| Adds new triangle with specified nodes to mesh. More...
|
|
void | AddLink (const Standard_Integer theFirstNode, const Standard_Integer theLastNode, Standard_Integer &theLinkIndex, Standard_Boolean &theLinkOri) |
| Adds new link to mesh. Updates link index and link orientaion parameters. More...
|
|
void | Legalize (const Standard_Integer theLinkIndex) |
| Performs legalization of triangles connected to the specified link. More...
|
|
void | EraseItemsConnectedTo (const Standard_Integer theNodeIndex) |
| Erases all elements connected to the specified artificial node. In addition, erases the artificial node itself. More...
|
|
void | CleanFrontierLinks () |
| Cleans frontier links from triangles to the right. More...
|
|
void | EraseTriangles (const IMeshData::MapOfInteger &theTriangles, IMeshData::MapOfIntegerInteger &theLoopEdges) |
| Erases the given set of triangles. Fills map of loop edges forming the countour surrounding the erased triangles. More...
|
|
void | EraseTriangle (const Standard_Integer theTriangleIndex, IMeshData::MapOfIntegerInteger &theLoopEdges) |
| Erases triangle with the given index and adds the free edges into the map. When an edge is suppressed more than one time it is destroyed. More...
|
|
void | EraseFreeLinks () |
| Erases all links that have no elements connected to them. More...
|
|
void | EraseFreeLinks (const IMeshData::MapOfIntegerInteger &theLinks) |
| Erases links from the specified map that have no elements connected to them. More...
|
|
Handle< IMeshData::MapOfInteger > | GetEdgesByType (const BRepMesh_DegreeOfFreedom theEdgeType) const |
| Gives the list of edges with type defined by input parameter. More...
|
|
Public Member Functions inherited from Standard_Transient |
| Standard_Transient () |
| Empty constructor. More...
|
|
| Standard_Transient (const Standard_Transient &) |
| Copy constructor – does nothing. More...
|
|
Standard_Transient & | operator= (const Standard_Transient &) |
| Assignment operator, needed to avoid copying reference counter. More...
|
|
virtual | ~Standard_Transient () |
| Destructor must be virtual. More...
|
|
virtual void | Delete () const |
| Memory deallocator for transient classes. More...
|
|
virtual const opencascade::handle< Standard_Type > & | DynamicType () const |
| Returns a type descriptor about this object. More...
|
|
Standard_Boolean | IsInstance (const opencascade::handle< Standard_Type > &theType) const |
| Returns a true value if this is an instance of Type. More...
|
|
Standard_Boolean | IsInstance (const Standard_CString theTypeName) const |
| Returns a true value if this is an instance of TypeName. More...
|
|
Standard_Boolean | IsKind (const opencascade::handle< Standard_Type > &theType) const |
| Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism. More...
|
|
Standard_Boolean | IsKind (const Standard_CString theTypeName) const |
| Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism. More...
|
|
Standard_Transient * | This () const |
| Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero. More...
|
|
Standard_Integer | GetRefCount () const |
| Get the reference counter of this object. More...
|
|
void | IncrementRefCounter () const |
| Increments the reference counter of this object. More...
|
|
Standard_Integer | DecrementRefCounter () const |
| Decrements the reference counter of this object; returns the decremented value. More...
|
|
Auxiliary tool providing API for manipulation with BRepMesh_DataStructureOfDelaun.