Package WildMagic.LibFoundation.Meshes
Class VETMesh.VertexAttribute
- java.lang.Object
-
- WildMagic.LibFoundation.Meshes.VETMesh.VertexAttribute
-
- Enclosing class:
- VETMesh
protected class VETMesh.VertexAttribute extends java.lang.ObjectThe attributes associated with a vertex. These include the set of edges sharing the vertex and the set of triangles sharing the vertex. The data member m_kData allows an application to attach whatever data it wants associated with the vertex. The attachment/detachment is performed by the application in the OnVertexInsert/OnVertexRemove callbacks.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Objectm_kDatasupport for application-specific data.TSmallUnorderedSetm_kESetset of. TSmallUnorderedSetm_kTSetset of.
-
Constructor Summary
Constructors Constructor Description VertexAttribute()Construct an attribute for a vertex.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanIsEmpty()Test if the sets of adjacent edges and triangles are empty.
-
-
-
Field Detail
-
m_kData
public java.lang.Object m_kData
support for application-specific data.
-
m_kESet
public TSmallUnorderedSet m_kESet
set of.
-
m_kTSet
public TSmallUnorderedSet m_kTSet
set of.
-
-