Class HmdVector3

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

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

Layout


 struct HmdVector3_t {
     float v[3];
 }
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    An array of HmdVector3 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 HmdVector3 instance at the current position of the specified ByteBuffer container.
  • Method Summary

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

    • HmdVector3

      public HmdVector3(ByteBuffer container)
      Creates a HmdVector3 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<HmdVector3>
    • v

      public FloatBuffer v()
      Returns:
      a FloatBuffer view of the v field.
    • v

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

      public HmdVector3 v(FloatBuffer value)
      Copies the specified FloatBuffer to the v field.
    • v

      public HmdVector3 v(int index, float value)
      Sets the specified value at the specified index of the v field.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      @Deprecated public static HmdVector3.Buffer mallocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static HmdVector3.Buffer callocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • mallocStack

      @Deprecated public static HmdVector3.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 HmdVector3.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 HmdVector3 malloc(org.lwjgl.system.MemoryStack stack)
      Returns a new HmdVector3 instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

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

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

      public static HmdVector3.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new HmdVector3.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 FloatBuffer nv(long struct)
      Unsafe version of v().
    • nv

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

      public static void nv(long struct, FloatBuffer value)
      Unsafe version of v.
    • nv

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