Class AIQuatKey

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class AIQuatKey extends Struct<AIQuatKey> implements NativeResource

 struct aiQuatKey {
     double mTime;
     {@link AIQuaternion struct aiQuaternion} mValue;
     aiAnimInterpolation mInterpolation;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int MTIME
      The struct member offsets.
    • MVALUE

      public static final int MVALUE
      The struct member offsets.
    • MINTERPOLATION

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

    • AIQuatKey

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

      public double mTime()
      Returns:
      the value of the mTime field.
    • mValue

      public AIQuaternion mValue()
      Returns:
      a AIQuaternion view of the mValue field.
    • mInterpolation

      public int mInterpolation()
      Returns:
      the value of the mInterpolation field.
    • mTime

      public AIQuatKey mTime(double value)
      Sets the specified value to the mTime field.
    • mValue

      public AIQuatKey mValue(AIQuaternion value)
      Copies the specified AIQuaternion to the mValue field.
    • mValue

      public AIQuatKey mValue(Consumer<AIQuaternion> consumer)
      Passes the mValue field to the specified Consumer.
    • mInterpolation

      public AIQuatKey mInterpolation(int value)
      Sets the specified value to the mInterpolation field.
    • set

      public AIQuatKey set(double mTime, AIQuaternion mValue, int mInterpolation)
      Initializes this struct with the specified values.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static AIQuatKey.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new AIQuatKey.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
    • nmTime

      public static double nmTime(long struct)
      Unsafe version of mTime().
    • nmValue

      public static AIQuaternion nmValue(long struct)
      Unsafe version of mValue().
    • nmInterpolation

      public static int nmInterpolation(long struct)
      Unsafe version of mInterpolation().
    • nmTime

      public static void nmTime(long struct, double value)
      Unsafe version of mTime.
    • nmValue

      public static void nmValue(long struct, AIQuaternion value)
      Unsafe version of mValue.
    • nmInterpolation

      public static void nmInterpolation(long struct, int value)
      Unsafe version of mInterpolation.