Package WildMagic.LibFoundation.Meshes
Class BasicMesh
- java.lang.Object
-
- WildMagic.LibFoundation.Meshes.BasicMesh
-
- All Implemented Interfaces:
java.io.Serializable
public class BasicMesh extends java.lang.Object implements java.io.Serializable- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classBasicMesh.EdgeclassBasicMesh.TriangleclassBasicMesh.Vertex
-
Field Summary
Fields Modifier and Type Field Description protected int[]m_aiIndexprotected BasicMesh.Edge[]m_akEdgeprotected Vector3f[]m_akPointprotected BasicMesh.Triangle[]m_akTriangleprotected BasicMesh.Vertex[]m_akVertexprotected booleanm_bIsValidprotected intm_iEQuantityprotected intm_iTQuantityprotected intm_iVQuantityprivate static longserialVersionUID
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispose()BasicMesh.Edge[]GetEdges()intGetEQuantity()int[]GetIndices()Vector3f[]GetPoints()intGetTQuantity()BasicMesh.Triangle[]GetTriangles()BasicMesh.Vertex[]GetVertices()intGetVQuantity()booleanIsValid()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
m_iVQuantity
protected int m_iVQuantity
-
m_iEQuantity
protected int m_iEQuantity
-
m_iTQuantity
protected int m_iTQuantity
-
m_akPoint
protected Vector3f[] m_akPoint
-
m_aiIndex
protected int[] m_aiIndex
-
m_akVertex
protected BasicMesh.Vertex[] m_akVertex
-
m_akEdge
protected BasicMesh.Edge[] m_akEdge
-
m_akTriangle
protected BasicMesh.Triangle[] m_akTriangle
-
m_bIsValid
protected boolean m_bIsValid
-
-
Constructor Detail
-
BasicMesh
public BasicMesh(int iVQuantity, Vector3f[] akPoint, int iTQuantity, int[] aiIndex)
-
-
Method Detail
-
dispose
public void dispose()
-
GetEdges
public final BasicMesh.Edge[] GetEdges()
-
GetEQuantity
public int GetEQuantity()
-
GetIndices
public final int[] GetIndices()
-
GetPoints
public final Vector3f[] GetPoints()
-
GetTQuantity
public int GetTQuantity()
-
GetTriangles
public final BasicMesh.Triangle[] GetTriangles()
-
GetVertices
public final BasicMesh.Vertex[] GetVertices()
-
GetVQuantity
public int GetVQuantity()
-
IsValid
public boolean IsValid()
-
-