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 BoundingBox3d
getBounds()
IntBuffer
getIndices()
T
getVertices()
void
setBounds(BoundingBox3d bounds)
void
setIndices(IntBuffer indices)
void
setVertices(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)
-
-