Package com.jme3.scene.mesh
package com.jme3.scene.mesh
-
ClassDescription
IndexBuffer
is an abstraction for integer index buffers, it is used to retrieve indices without knowing in which format they are stored (ushort or uint).IndexBuffer implementation forByteBuffer
s.IndexBuffer implementation forIntBuffer
s.IndexBuffer implementation forShortBuffer
s.IndexBuffer implementation that generates vertex indices sequentially based on a specific MeshMesh.Mode
.WrappedIndexBuffer
converts vertex indices from a non list based mesh mode such asMesh.Mode.TriangleStrip
orMesh.Mode.LineLoop
into a list based mode such asMesh.Mode.Triangles
orMesh.Mode.Lines
.