Interface VBO<T>
-
- All Known Implementing Classes:
FloatVBO
public interface VBO<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BoundingBox3dgetBounds()IntBuffergetIndices()TgetVertices()voidsetBounds(BoundingBox3d bounds)voidsetIndices(IntBuffer indices)voidsetVertices(T vertices)
-
-
-
Method Detail
-
getVertices
T getVertices()
-
setVertices
void setVertices(T vertices)
-
getIndices
IntBuffer getIndices()
-
setIndices
void setIndices(IntBuffer indices)
-
getBounds
BoundingBox3d getBounds()
-
setBounds
void setBounds(BoundingBox3d bounds)
-
-