Package WildMagic.LibGraphics.Detail
Class CreateClodMesh.Vertex
- java.lang.Object
 - 
- WildMagic.LibGraphics.Detail.CreateClodMesh.Vertex
 
 
- 
- Enclosing class:
 - CreateClodMesh
 
public class CreateClodMesh.Vertex extends java.lang.ObjectA representation of a vertex for the vertex-edge-triangle table. This class just stores the index of the vertex but is unconcerned about the actually vertex 3D coordinate. The class extends Object to obtain support for hashing into a map of vertices. 
- 
- 
Field Summary
Fields Modifier and Type Field Description intm_iVDOCUMENT ME! 
- 
Constructor Summary
Constructors Constructor Description Vertex(int iV)Constructs a vertex in the table. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object kObject)Support for hashing into a map of vertices.inthashCode()Support for hashing into a map of vertices. 
 - 
 
- 
- 
Method Detail
- 
equals
public boolean equals(java.lang.Object kObject)
Support for hashing into a map of vertices.- Overrides:
 equalsin classjava.lang.Object- Parameters:
 kObject- a vertex for comparison to the current one- Returns:
 - true iff the vertices have the same index
 
 
- 
hashCode
public int hashCode()
Support for hashing into a map of vertices.- Overrides:
 hashCodein classjava.lang.Object- Returns:
 - the hash key for the vertex
 
 
 - 
 
 -