Class ParShapesMesh

  • All Implemented Interfaces:
    org.lwjgl.system.Pointer


    public class ParShapesMesh
    extends org.lwjgl.system.Struct
    The par_shapes.h mesh structure.

    Member documentation

    • points – a flat list of 3-tuples (X Y Z X Y Z...) for the vertex positions
    • npoints – the number of points
    • triangles – flat list of 3-tuples (I J K I J K...)
    • ntriangles – the number of triangles
    • normals – an optional list of 3-tuples (X Y Z X Y Z...) for the vertex normals
    • tcoords – an optional list of 2-tuples (U V U V U V...) for the vertex texture coordinates

    Layout

     struct par_shapes_mesh {
         float * points;
         int npoints;
         PAR_SHAPES_T * triangles;
         int ntriangles;
         float * normals;
         float * tcoords;
     }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class and Description
      static class  ParShapesMesh.Buffer
      An array of ParShapesMesh structs.
      • Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer

        org.lwjgl.system.Pointer.Default
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static int SIZEOF
      The struct size in bytes.
      • Fields inherited from interface org.lwjgl.system.Pointer

        POINTER_SHIFT, POINTER_SIZE
    • Constructor Summary

      Constructors 
      Constructor and Description
      ParShapesMesh(java.nio.ByteBuffer container)
      Creates a ParShapesMesh instance at the current position of the specified ByteBuffer container.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      static ParShapesMesh create(long address)
      Returns a new ParShapesMesh instance for the specified memory address or null if the address is NULL.
      static ParShapesMesh.Buffer create(long address, int capacity)
      Create a ParShapesMesh.Buffer instance at the specified memory.
      java.nio.FloatBuffer normals(int capacity)
      Returns a FloatBuffer view of the data pointed to by the normals field.
      int npoints()
      Returns the value of the npoints field.
      int ntriangles()
      Returns the value of the ntriangles field.
      java.nio.FloatBuffer points(int capacity)
      Returns a FloatBuffer view of the data pointed to by the points field.
      int sizeof()
      Returns sizeof(struct).
      java.nio.FloatBuffer tcoords(int capacity)
      Returns a FloatBuffer view of the data pointed to by the tcoords field.
      java.nio.ShortBuffer triangles(int capacity)
      Returns a ShortBuffer view of the data pointed to by the triangles field.
      • Methods inherited from class org.lwjgl.system.Struct

        clear, free
      • Methods inherited from class org.lwjgl.system.Pointer.Default

        address, equals, hashCode, toString
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • SIZEOF

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

      • ParShapesMesh

        public ParShapesMesh(java.nio.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 Detail

      • sizeof

        public int sizeof()
        Description copied from class: org.lwjgl.system.Struct
        Returns sizeof(struct).
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • points

        public java.nio.FloatBuffer points(int capacity)
        Returns a FloatBuffer view of the data pointed to by the points field.
        Parameters:
        capacity - the number of elements in the returned buffer
      • npoints

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

        public java.nio.ShortBuffer triangles(int capacity)
        Returns a ShortBuffer view of the data pointed to by the triangles field.
        Parameters:
        capacity - the number of elements in the returned buffer
      • ntriangles

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

        public java.nio.FloatBuffer normals(int capacity)
        Returns a FloatBuffer view of the data pointed to by the normals field.
        Parameters:
        capacity - the number of elements in the returned buffer
      • tcoords

        public java.nio.FloatBuffer tcoords(int capacity)
        Returns a FloatBuffer view of the data pointed to by the tcoords field.
        Parameters:
        capacity - the number of elements in the returned buffer
      • create

        public static ParShapesMesh create(long address)
        Returns a new ParShapesMesh instance for the specified memory address or null if the 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