RaylibQuaternionExtFlatNative class

Inheritance

Properties

$ → RaylibTemp<RaylibBase>
See RaylibTemp.
no setterinherited
hashCode → int
The hash code for this object.
no setterinherited
rl → Raylib
finalinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

debug(bool v) → void
Enables or disables debug logging for this module.
inherited
debugError(String message) → void
Logs message at error level if debug is enabled and message passes all filters.
inherited
debugFilter(bool filter(String)) → void
Adds a predicate that gates debug output. Only messages satisfying at least one filter are logged.
inherited
debugInfo(String message) → void
Logs message at info level if debug is enabled and message passes all filters.
inherited
debugTime(bool v) → void
Enables or disables per-call timing output alongside debug logs.
inherited
debugWarn(String message) → void
Logs message at warn level if debug is enabled and message passes all filters.
inherited
disableSync<T>(T f()) → T
Executes f with RaylibTemp syncing temporarily disabled, restoring the previous sync state afterward.
inherited
dispose() → void
Calls all registered onDispose callbacks and clears them.
inherited
disposeStructWithOpFreed<D extends RaylibStruct<D>>(D struct, void fn(StructPointer<D> ptr)) → void
Disposes struct, invokes fn with its underlying pointer, and then frees the temporary allocation backing the pointer, if any.
inherited
disposeStructWithOpUnslotted<D extends RaylibStruct<D>>(D struct, void fn(StructPointer<D> ptr)) → void
Disposes struct, invokes fn with its underlying pointer, and then unslots the temporary allocation backing the pointer, if any.
inherited
load() → void
Override to perform one-time module initialization.
inherited
logError(Object? message) → void
inherited
logInfo(Object? message) → void
inherited
logWarn(Object? message) → void
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
onDispose(void fn()) → void
Registers fn to be called when this module is disposed.
inherited
QuaternionAdd(QuaternionD q1, QuaternionD q2) → QuaternionD
Add two quaternions
override
QuaternionAddValue(QuaternionD q, double add) → QuaternionD
Add quaternion and double value
override
QuaternionCubicHermiteSpline(QuaternionD q1, QuaternionD outTangent1, QuaternionD q2, QuaternionD inTangent2, double t) → QuaternionD
Calculate quaternion cubic spline interpolation using Cubic Hermite Spline algorithm as described in the GLTF 2.0 specification: https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#interpolation-cubic
override
QuaternionDivide(QuaternionD q1, QuaternionD q2) → QuaternionD
Divide two quaternions
override
QuaternionEquals(QuaternionD p, QuaternionD q) → bool
Check whether two given quaternions are almost equal
override
QuaternionFromAxisAngle(Vector3D axis, double angle) → QuaternionD
Get rotation quaternion for an angle and axis
override
QuaternionFromEuler(double pitch, double yaw, double roll) → QuaternionD
Get the quaternion equivalent to Euler angles
override
QuaternionFromMatrix(MatrixD mat) → QuaternionD
Get a quaternion for a given rotation matrix
override
QuaternionFromVector3ToVector3(Vector3D from, Vector3D to) → QuaternionD
Calculate quaternion based on the rotation from one vector to another
override
QuaternionIdentity() → QuaternionD
Get identity quaternion
override
QuaternionInvert(QuaternionD q) → QuaternionD
Invert provided quaternion
override
QuaternionLength(QuaternionD q) → double
Computes the length of a quaternion
override
QuaternionLerp(QuaternionD q1, QuaternionD q2, double amount) → QuaternionD
Calculate linear interpolation between two quaternions
override
QuaternionMultiply(QuaternionD q1, QuaternionD q2) → QuaternionD
Calculate two quaternion multiplication
override
QuaternionNlerp(QuaternionD q1, QuaternionD q2, double amount) → QuaternionD
Calculate slerp-optimized interpolation between two quaternions
override
QuaternionNormalize(QuaternionD q) → QuaternionD
Normalize provided quaternion
override
QuaternionScale(QuaternionD q, double mul) → QuaternionD
Scale quaternion by double value
override
QuaternionSlerp(QuaternionD q1, QuaternionD q2, double amount) → QuaternionD
Calculates spherical linear interpolation between two quaternions
override
QuaternionSubtract(QuaternionD q1, QuaternionD q2) → QuaternionD
Subtract two quaternions
override
QuaternionSubtractValue(QuaternionD q, double sub) → QuaternionD
Subtract quaternion and double value
override
QuaternionToAxisAngle(QuaternionD q, StructPointer<Vector3D> outAxis, MemoryPointer<RFloat> outAngle) → void
Get the rotation angle and axis for a given quaternion
override
QuaternionToEuler(QuaternionD q) → Vector3D
Get the Euler angles equivalent to quaternion (roll, pitch, yaw)
override
QuaternionToMatrix(QuaternionD q) → MatrixD
Get a matrix for a given quaternion
override
QuaternionTransform(QuaternionD q, MatrixD mat) → QuaternionD
Transform a quaternion given a transformation matrix
override
run<T>(String name(), T f()) → T
Executes f, logging its label (and optionally timing it) when debug is enabled and the label passes all filters.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited