Package org.lwjgl.assimp
Class AIQuatKey
- All Implemented Interfaces:
AutoCloseable
,NativeResource
,Pointer
struct aiQuatKey {
double mTime;
{@link AIQuaternion struct aiQuaternion} mValue;
aiAnimInterpolation mInterpolation;
}
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidation
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The struct alignment in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct size in bytes.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
-
Constructor Summary
ConstructorsConstructorDescriptionAIQuatKey
(ByteBuffer container) Creates aAIQuatKey
instance at the current position of the specifiedByteBuffer
container. -
Method Summary
Modifier and TypeMethodDescriptionstatic AIQuatKey
calloc()
Returns a newAIQuatKey
instance allocated withmemCalloc
.static AIQuatKey.Buffer
calloc
(int capacity) Returns a newAIQuatKey.Buffer
instance allocated withmemCalloc
.static AIQuatKey.Buffer
calloc
(int capacity, MemoryStack stack) Returns a newAIQuatKey.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static AIQuatKey
calloc
(MemoryStack stack) Returns a newAIQuatKey
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static AIQuatKey
Deprecated.static AIQuatKey.Buffer
callocStack
(int capacity) Deprecated.static AIQuatKey.Buffer
callocStack
(int capacity, MemoryStack stack) Deprecated.static AIQuatKey
callocStack
(MemoryStack stack) Deprecated.static AIQuatKey
create()
Returns a newAIQuatKey
instance allocated withBufferUtils
.static AIQuatKey.Buffer
create
(int capacity) Returns a newAIQuatKey.Buffer
instance allocated withBufferUtils
.static AIQuatKey
create
(long address) Returns a newAIQuatKey
instance for the specified memory address.static AIQuatKey.Buffer
create
(long address, int capacity) Create aAIQuatKey.Buffer
instance at the specified memory.static @Nullable AIQuatKey
createSafe
(long address) static @Nullable AIQuatKey.Buffer
createSafe
(long address, int capacity) static AIQuatKey
malloc()
Returns a newAIQuatKey
instance allocated withmemAlloc
.static AIQuatKey.Buffer
malloc
(int capacity) Returns a newAIQuatKey.Buffer
instance allocated withmemAlloc
.static AIQuatKey.Buffer
malloc
(int capacity, MemoryStack stack) Returns a newAIQuatKey.Buffer
instance allocated on the specifiedMemoryStack
.static AIQuatKey
malloc
(MemoryStack stack) Returns a newAIQuatKey
instance allocated on the specifiedMemoryStack
.static AIQuatKey
Deprecated.static AIQuatKey.Buffer
mallocStack
(int capacity) Deprecated.static AIQuatKey.Buffer
mallocStack
(int capacity, MemoryStack stack) Deprecated.static AIQuatKey
mallocStack
(MemoryStack stack) Deprecated.int
mInterpolation
(int value) Sets the specified value to themInterpolation
field.double
mTime()
mTime
(double value) Sets the specified value to themTime
field.mValue()
mValue
(Consumer<AIQuaternion> consumer) Passes themValue
field to the specifiedConsumer
.mValue
(AIQuaternion value) Copies the specifiedAIQuaternion
to themValue
field.static int
nmInterpolation
(long struct) Unsafe version ofmInterpolation()
.static void
nmInterpolation
(long struct, int value) Unsafe version ofmInterpolation
.static double
nmTime
(long struct) Unsafe version ofmTime()
.static void
nmTime
(long struct, double value) Unsafe version ofmTime
.static AIQuaternion
nmValue
(long struct) Unsafe version ofmValue()
.static void
nmValue
(long struct, AIQuaternion value) Unsafe version ofmValue
.set
(double mTime, AIQuaternion mValue, int mInterpolation) Initializes this struct with the specified values.Copies the specified struct data to this struct.int
sizeof()
Returnssizeof(struct)
.Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
Methods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
MTIME
public static final int MTIMEThe struct member offsets. -
MVALUE
public static final int MVALUEThe struct member offsets. -
MINTERPOLATION
public static final int MINTERPOLATIONThe struct member offsets.
-
-
Constructor Details
-
AIQuatKey
Creates aAIQuatKey
instance at the current position of the specifiedByteBuffer
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
Returnssizeof(struct)
. -
mTime
public double mTime()- Returns:
- the value of the
mTime
field.
-
mValue
- Returns:
- a
AIQuaternion
view of themValue
field.
-
mInterpolation
public int mInterpolation()- Returns:
- the value of the
mInterpolation
field.
-
mTime
Sets the specified value to themTime
field. -
mValue
Copies the specifiedAIQuaternion
to themValue
field. -
mValue
Passes themValue
field to the specifiedConsumer
. -
mInterpolation
Sets the specified value to themInterpolation
field. -
set
Initializes this struct with the specified values. -
set
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
Returns a newAIQuatKey
instance allocated withmemAlloc
. The instance must be explicitly freed. -
calloc
Returns a newAIQuatKey
instance allocated withmemCalloc
. The instance must be explicitly freed. -
create
Returns a newAIQuatKey
instance allocated withBufferUtils
. -
create
Returns a newAIQuatKey
instance for the specified memory address. -
createSafe
-
malloc
Returns a newAIQuatKey.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
Returns a newAIQuatKey.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
Returns a newAIQuatKey.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
Create aAIQuatKey.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
-
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead. -
malloc
Returns a newAIQuatKey
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
calloc
Returns a newAIQuatKey
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
malloc
Returns a newAIQuatKey.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
capacity
- the buffer capacitystack
- the stack from which to allocate
-
calloc
Returns a newAIQuatKey.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
capacity
- the buffer capacitystack
- the stack from which to allocate
-
nmTime
public static double nmTime(long struct) Unsafe version ofmTime()
. -
nmValue
Unsafe version ofmValue()
. -
nmInterpolation
public static int nmInterpolation(long struct) Unsafe version ofmInterpolation()
. -
nmTime
public static void nmTime(long struct, double value) Unsafe version ofmTime
. -
nmValue
Unsafe version ofmValue
. -
nmInterpolation
public static void nmInterpolation(long struct, int value) Unsafe version ofmInterpolation
.
-