Package org.lwjgl.util.par
Class ParShapesMesh.Buffer
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.CustomBuffer<SELF>
-
- org.lwjgl.system.StructBuffer<ParShapesMesh,ParShapesMesh.Buffer>
-
- org.lwjgl.util.par.ParShapesMesh.Buffer
-
- All Implemented Interfaces:
java.lang.Iterable<ParShapesMesh>
,org.lwjgl.system.Pointer
- Enclosing class:
- ParShapesMesh
public static class ParShapesMesh.Buffer extends org.lwjgl.system.StructBuffer<ParShapesMesh,ParShapesMesh.Buffer>
An array ofParShapesMesh
structs.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.FloatBuffer
normals(int capacity)
Returns aFloatBuffer
view of the data pointed to by thenormals
field.int
npoints()
Returns the value of thenpoints
field.int
ntriangles()
Returns the value of thentriangles
field.java.nio.FloatBuffer
points(int capacity)
Returns aFloatBuffer
view of the data pointed to by thepoints
field.java.nio.FloatBuffer
tcoords(int capacity)
Returns aFloatBuffer
view of the data pointed to by thetcoords
field.java.nio.IntBuffer
triangles(int capacity)
Returns aIntBuffer
view of the data pointed to by thetriangles
field.
-
-
-
Constructor Detail
-
Buffer
public Buffer(java.nio.ByteBuffer container)
Creates a newParShapesMesh.Buffer
instance backed by the specified container. Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided byParShapesMesh.SIZEOF
, and its mark will be undefined.The created buffer instance holds a strong reference to the container object.
-
Buffer
public Buffer(long address, int cap)
-
-
Method Detail
-
points
public java.nio.FloatBuffer points(int capacity)
Returns aFloatBuffer
view of the data pointed to by thepoints
field.- Parameters:
capacity
- the number of elements in the returned buffer
-
npoints
public int npoints()
Returns the value of thenpoints
field.
-
triangles
public java.nio.IntBuffer triangles(int capacity)
Returns aIntBuffer
view of the data pointed to by thetriangles
field.- Parameters:
capacity
- the number of elements in the returned buffer
-
ntriangles
public int ntriangles()
Returns the value of thentriangles
field.
-
normals
@Nullable public java.nio.FloatBuffer normals(int capacity)
Returns aFloatBuffer
view of the data pointed to by thenormals
field.- Parameters:
capacity
- the number of elements in the returned buffer
-
tcoords
@Nullable public java.nio.FloatBuffer tcoords(int capacity)
Returns aFloatBuffer
view of the data pointed to by thetcoords
field.- Parameters:
capacity
- the number of elements in the returned buffer
-
-