Class HmdVector3d

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<HmdVector3d>
org.lwjgl.openvr.HmdVector3d
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

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

Layout


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

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    An array of HmdVector3d structs.

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

    org.lwjgl.system.Struct.StructValidation

    Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer

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

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The struct alignment in bytes.
    static final int
    The struct size in bytes.
    static final int
    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
    Creates a HmdVector3d instance at the current position of the specified ByteBuffer container.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a new HmdVector3d instance allocated with memCalloc.
    calloc(int capacity)
    Returns a new HmdVector3d.Buffer instance allocated with memCalloc.
    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.
    calloc(org.lwjgl.system.MemoryStack stack)
    Returns a new HmdVector3d instance allocated on the specified MemoryStack and initializes all its bits to zero.
    Deprecated.
    callocStack(int capacity)
    Deprecated.
    callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
    Deprecated.
    callocStack(org.lwjgl.system.MemoryStack stack)
    Deprecated.
    Returns a new HmdVector3d instance allocated with BufferUtils.
    create(int capacity)
    Returns a new HmdVector3d.Buffer instance allocated with BufferUtils.
    create(long address)
    Returns a new HmdVector3d instance for the specified memory address.
    create(long address, int capacity)
    Create a HmdVector3d.Buffer instance at the specified memory.
    static @Nullable HmdVector3d
    createSafe(long address)
    Like create, but returns null if address is NULL.
    static @Nullable HmdVector3d.Buffer
    createSafe(long address, int capacity)
    Like create, but returns null if address is NULL.
    Returns a new HmdVector3d instance allocated with memAlloc.
    malloc(int capacity)
    Returns a new HmdVector3d.Buffer instance allocated with memAlloc.
    malloc(int capacity, org.lwjgl.system.MemoryStack stack)
    Returns a new HmdVector3d.Buffer instance allocated on the specified MemoryStack.
    malloc(org.lwjgl.system.MemoryStack stack)
    Returns a new HmdVector3d instance allocated on the specified MemoryStack.
    Deprecated.
    mallocStack(int capacity)
    Deprecated.
    mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
    Deprecated.
    mallocStack(org.lwjgl.system.MemoryStack stack)
    Deprecated.
    nv(long struct)
    Unsafe version of v().
    static double
    nv(long struct, int index)
    Unsafe version of v.
    static void
    nv(long struct, int index, double value)
    Unsafe version of v.
    static void
    nv(long struct, DoubleBuffer value)
    Unsafe version of v.
    Copies the specified struct data to this struct.
    int
     
    v()
     
    double
    v(int index)
     
    v(int index, double value)
    Sets the specified value at the specified index of the v field.
    v(DoubleBuffer value)
    Copies the specified DoubleBuffer to the v field.

    Methods inherited from class org.lwjgl.system.Struct

    clear, free, isNull, validate, validate

    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

    Methods inherited from interface org.lwjgl.system.NativeResource

    close, free
  • Field Details

    • 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 Details

    • HmdVector3d

      public HmdVector3d(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 Details

    • sizeof

      public int sizeof()
      Specified by:
      sizeof in class org.lwjgl.system.Struct<HmdVector3d>
    • v

      public 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(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

      public static @Nullable 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

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

      @Deprecated public static HmdVector3d mallocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static HmdVector3d callocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • 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)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static HmdVector3d.Buffer callocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, 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:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • 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:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • nv

      public static 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, DoubleBuffer value)
      Unsafe version of v.
    • nv

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