RaylibQuaternionExtensionBase<R extends RaylibBase, MatrixStructType extends MatrixBase<MatrixStructType, Vector3StructType, QuaternionStructType, Vector4StructType>, QuaternionStructType extends QuaternionBase<QuaternionStructType, MatrixStructType, Vector3StructType, Vector4StructType>, RectangleStructType extends RectangleBase<RectangleStructType>, Vector2StructType extends Vector2Base<Vector2StructType, MatrixStructType, Vector3StructType, QuaternionStructType, Vector4StructType>, Vector3StructType extends Vector3Base<Vector3StructType, MatrixStructType, QuaternionStructType, Vector4StructType>, Vector4StructType extends Vector4Base<Vector4StructType, QuaternionStructType, MatrixStructType, Vector3StructType>> class abstract

Exposes Raylib's quaternion math API as module-level functions by delegating to the corresponding QuaternionBase methods/factories. Exists purely for Raylib API symmetry.

Inheritance
Implementers

Constructors

RaylibQuaternionExtensionBase(R rl)

Properties

hashCode int
The hash code for this object.
no setterinherited
rl → R
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 RaylibTempBase syncing temporarily disabled, restoring the previous sync state afterward.
inherited
dispose() → void
Calls all registered onDispose callbacks and clears them.
inherited
doLoad() → void
Ensures load is called exactly once, regardless of how many times doLoad is invoked.
inherited
load() → void
Override to perform one-time module initialization. Called by doLoad.
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(QuaternionStructType q1, QuaternionStructType q2) → QuaternionStructType
QuaternionAddValue(QuaternionStructType q, double add) → QuaternionStructType
QuaternionCubicHermiteSpline(QuaternionStructType q1, QuaternionStructType outTangent1, QuaternionStructType q2, QuaternionStructType inTangent2, double t) → QuaternionStructType
QuaternionEquals(QuaternionStructType p, QuaternionStructType q) bool
QuaternionFromAxisAngle(Vector3StructType axis, double angle) → QuaternionStructType
QuaternionFromEuler(double pitch, double yaw, double roll) → QuaternionStructType
QuaternionFromMatrix(MatrixStructType mat) → QuaternionStructType
QuaternionFromVector3ToVector3(Vector3StructType from, Vector3StructType to) → QuaternionStructType
QuaternionIdentity() → QuaternionStructType
QuaternionInvert(QuaternionStructType q) → QuaternionStructType
QuaternionLength(QuaternionStructType q) double
QuaternionLerp(QuaternionStructType q1, QuaternionStructType q2, double amount) → QuaternionStructType
QuaternionMultiply(QuaternionStructType q1, QuaternionStructType q2) → QuaternionStructType
QuaternionNlerp(QuaternionStructType q1, QuaternionStructType q2, double amount) → QuaternionStructType
QuaternionNormalize(QuaternionStructType q) → QuaternionStructType
QuaternionScale(QuaternionStructType q, double mul) → QuaternionStructType
QuaternionSlerp(QuaternionStructType q1, QuaternionStructType q2, double amount) → QuaternionStructType
QuaternionStructTypeivide(QuaternionStructType q1, QuaternionStructType q2) → QuaternionStructType
QuaternionSubtract(QuaternionStructType q1, QuaternionStructType q2) → QuaternionStructType
QuaternionSubtractValue(QuaternionStructType q, double sub) → QuaternionStructType
QuaternionToAxisAngle(QuaternionStructType q) → (Vector3StructType, double)
QuaternionToEuler(QuaternionStructType q) → Vector3StructType
QuaternionToMatrix(QuaternionStructType q) → MatrixStructType
QuaternionTransform(QuaternionStructType q, MatrixStructType mat) → QuaternionStructType
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