KrisLibrary  1.0.0
Public Member Functions | List of all members
Meshing::TriMeshTraversalCallback Struct Reference

A callback base class for traversing triangle mesh topology. More...

#include <TriMeshTopology.h>

Inheritance diagram for Meshing::TriMeshTraversalCallback:
Meshing::SplitCallback

Public Member Functions

virtual void NewComponent (int c)
 
virtual void Tri (int t)
 
virtual void TriArc (int t, int e)
 
virtual void Edge (int v1, int v2)
 
virtual void Vertex (int v)
 

Detailed Description

A callback base class for traversing triangle mesh topology.

2 types of traversal:
Triangle walk: nodes are triangles, arcs are edges Tri() called on new node, TriArc() then Edge() on new edge.
Vertex walk: nodes are vertices, arcs are edges Vertex() called on new node, Edge() on new edge.


The documentation for this struct was generated from the following file: