Class ParShapesMesh

All Implemented Interfaces:
Pointer

public class ParShapesMesh extends Struct<ParShapesMesh>

 struct par_shapes_mesh {
     float * points;
     int npoints;
     PAR_SHAPES_T * triangles;
     int ntriangles;
     float * normals;
     float * tcoords;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • POINTS

      public static final int POINTS
      The struct member offsets.
    • NPOINTS

      public static final int NPOINTS
      The struct member offsets.
    • TRIANGLES

      public static final int TRIANGLES
      The struct member offsets.
    • NTRIANGLES

      public static final int NTRIANGLES
      The struct member offsets.
    • NORMALS

      public static final int NORMALS
      The struct member offsets.
    • TCOORDS

      public static final int TCOORDS
      The struct member offsets.
  • Constructor Details

    • ParShapesMesh

      public ParShapesMesh(ByteBuffer container)
      Creates a ParShapesMesh instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details

    • sizeof

      public int sizeof()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<ParShapesMesh>
    • points

      public FloatBuffer points(int capacity)
      Returns:
      a FloatBuffer view of the data pointed to by the points field.
    • npoints

      public int npoints()
      Returns:
      the value of the npoints field.
    • triangles

      public IntBuffer triangles(int capacity)
      Returns:
      a IntBuffer view of the data pointed to by the triangles field.
    • ntriangles

      public int ntriangles()
      Returns:
      the value of the ntriangles field.
    • normals

      public @Nullable FloatBuffer normals(int capacity)
      Returns:
      a FloatBuffer view of the data pointed to by the normals field.
    • tcoords

      public @Nullable FloatBuffer tcoords(int capacity)
      Returns:
      a FloatBuffer view of the data pointed to by the tcoords field.
    • create

      public static ParShapesMesh create(long address)
      Returns a new ParShapesMesh instance for the specified memory address.
    • createSafe

      public static @Nullable ParShapesMesh createSafe(long address)
      Like create, but returns null if address is NULL.
    • create

      public static ParShapesMesh.Buffer create(long address, int capacity)
      Create a ParShapesMesh.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable ParShapesMesh.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • npoints

      public static FloatBuffer npoints(long struct, int capacity)
      Unsafe version of points.
    • nnpoints

      public static int nnpoints(long struct)
      Unsafe version of npoints().
    • ntriangles

      public static IntBuffer ntriangles(long struct, int capacity)
      Unsafe version of triangles.
    • nntriangles

      public static int nntriangles(long struct)
      Unsafe version of ntriangles().
    • nnormals

      public static @Nullable FloatBuffer nnormals(long struct, int capacity)
      Unsafe version of normals.
    • ntcoords

      public static @Nullable FloatBuffer ntcoords(long struct, int capacity)
      Unsafe version of tcoords.