Class HmdVector3d

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class HmdVector3d
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource

    Layout

    
     struct HmdVector3d_t {
         double v[3];
     }
    • Nested Class Summary

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

        org.lwjgl.system.Pointer.Default
      • Nested classes/interfaces inherited from class org.lwjgl.system.Struct

        org.lwjgl.system.Struct.StructValidation
    • Field Summary

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

        BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
    • Constructor Summary

      Constructors 
      Constructor Description
      HmdVector3d​(java.nio.ByteBuffer container)
      Creates a HmdVector3d instance at the current position of the specified ByteBuffer container.
    • Field Detail

      • SIZEOF

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

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

        public static final int V
        The struct member offsets.
    • Constructor Detail

      • HmdVector3d

        public HmdVector3d​(java.nio.ByteBuffer container)
        Creates a HmdVector3d 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()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • v

        public java.nio.DoubleBuffer v()
        Returns:
        a DoubleBuffer view of the v field.
      • v

        public double v​(int index)
        Returns:
        the value at the specified index of the v field.
      • v

        public HmdVector3d v​(java.nio.DoubleBuffer value)
        Copies the specified DoubleBuffer to the v field.
      • v

        public HmdVector3d v​(int index,
                             double value)
        Sets the specified value at the specified index of the v field.
      • set

        public HmdVector3d set​(HmdVector3d src)
        Copies the specified struct data to this struct.
        Parameters:
        src - the source struct
        Returns:
        this struct
      • malloc

        public static HmdVector3d malloc()
        Returns a new HmdVector3d instance allocated with memAlloc. The instance must be explicitly freed.
      • calloc

        public static HmdVector3d calloc()
        Returns a new HmdVector3d instance allocated with memCalloc. The instance must be explicitly freed.
      • create

        public static HmdVector3d create()
        Returns a new HmdVector3d instance allocated with BufferUtils.
      • create

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

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

        public static HmdVector3d.Buffer malloc​(int capacity)
        Returns a new HmdVector3d.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
        Parameters:
        capacity - the buffer capacity
      • calloc

        public static HmdVector3d.Buffer calloc​(int capacity)
        Returns a new HmdVector3d.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
        Parameters:
        capacity - the buffer capacity
      • create

        public static HmdVector3d.Buffer create​(int capacity)
        Returns a new HmdVector3d.Buffer instance allocated with BufferUtils.
        Parameters:
        capacity - the buffer capacity
      • create

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

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

        @Deprecated
        public static HmdVector3d mallocStack​(org.lwjgl.system.MemoryStack stack)
        Deprecated.
        Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
      • callocStack

        @Deprecated
        public static HmdVector3d callocStack​(org.lwjgl.system.MemoryStack stack)
        Deprecated.
        Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
      • mallocStack

        @Deprecated
        public static HmdVector3d.Buffer mallocStack​(int capacity,
                                                     org.lwjgl.system.MemoryStack stack)
        Deprecated.
        Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
      • callocStack

        @Deprecated
        public static HmdVector3d.Buffer callocStack​(int capacity,
                                                     org.lwjgl.system.MemoryStack stack)
        Deprecated.
        Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
      • malloc

        public static HmdVector3d malloc​(org.lwjgl.system.MemoryStack stack)
        Returns a new HmdVector3d instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
      • calloc

        public static HmdVector3d calloc​(org.lwjgl.system.MemoryStack stack)
        Returns a new HmdVector3d instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
      • malloc

        public static HmdVector3d.Buffer malloc​(int capacity,
                                                org.lwjgl.system.MemoryStack stack)
        Returns a new HmdVector3d.Buffer instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • calloc

        public static HmdVector3d.Buffer calloc​(int capacity,
                                                org.lwjgl.system.MemoryStack stack)
        Returns a new HmdVector3d.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • nv

        public static java.nio.DoubleBuffer nv​(long struct)
        Unsafe version of v().
      • nv

        public static double nv​(long struct,
                                int index)
        Unsafe version of v.
      • nv

        public static void nv​(long struct,
                              java.nio.DoubleBuffer value)
        Unsafe version of v.
      • nv

        public static void nv​(long struct,
                              int index,
                              double value)
        Unsafe version of v.