RaylibVector4ExtDart<R extends RaylibBase> class
Exposes Raylib's vector math API as module-level functions by delegating to the corresponding Vector4D methods/factories. Exists purely for Raylib API symmetry.
- Inheritance
-
- Object
- RaylibModule<
R> - RaylibVector4ExtDart
Constructors
- RaylibVector4ExtDart(R rl)
Properties
-
$
→ RaylibTemp<
RaylibBase> -
See RaylibTemp.
no setterinherited
- 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
messageat error level if debug is enabled andmessagepasses 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
messageat info level if debug is enabled andmessagepasses all filters.inherited -
debugTime(
bool v) → void -
Enables or disables per-call timing output alongside debug logs.
inherited
-
debugWarn(
String message) → void -
Logs
messageat warn level if debug is enabled andmessagepasses all filters.inherited -
disableSync<
T> (T f()) → T -
Executes
fwith 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, invokesfnwith 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, invokesfnwith 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
fnto be called when this module is disposed.inherited -
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
-
Vector4Add(
Vector4D v1, Vector4D v2) → Vector4D - See Vector4D.add.
-
Vector4AddValue(
Vector4D v, double add) → Vector4D - See Vector4D.addValue.
-
Vector4Distance(
Vector4D v1, Vector4D v2) → double - See Vector4D.distance.
-
Vector4DistanceSqr(
Vector4D v1, Vector4D v2) → double - See Vector4D.distanceSqr.
-
Vector4Divide(
Vector4D v1, Vector4D v2) → Vector4D - See Vector4D.div.
-
Vector4DotProduct(
Vector4D v1, Vector4D v2) → double - See Vector4D.dotProduct.
-
Vector4Equals(
Vector4D p, Vector4D q) → bool - See Vector4D.equals.
-
Vector4Invert(
Vector4D v) → Vector4D - See Vector4D.invert.
-
Vector4Length(
Vector4D v) → double - See Vector4D.length.
-
Vector4LengthSqr(
Vector4D v) → double - See Vector4D.lengthSqr.
-
Vector4Lerp(
Vector4D v1, Vector4D v2, double amount) → Vector4D - See Vector4D.lerp.
-
Vector4Max(
Vector4D v1, Vector4D v2) → Vector4D - See Vector4D.max.
-
Vector4Min(
Vector4D v1, Vector4D v2) → Vector4D - See Vector4D.min.
-
Vector4MoveTowards(
Vector4D v, Vector4D target, double maxDistance) → Vector4D - See Vector4D.moveTowards.
-
Vector4Multiply(
Vector4D v1, Vector4D v2) → Vector4D - See Vector4D.mul.
-
Vector4Negate(
Vector4D v) → Vector4D - See Vector4D.negate.
-
Vector4Normalize(
Vector4D v) → Vector4D - See Vector4D.normalize.
-
Vector4One(
) → Vector4D - See Vector4D.one.
-
Vector4Scale(
Vector4D v, double scale) → Vector4D - See Vector4D.scale.
-
Vector4Subtract(
Vector4D v1, Vector4D v2) → Vector4D - See Vector4D.sub.
-
Vector4SubtractValue(
Vector4D v, double sub) → Vector4D - See Vector4D.subValue.
-
Vector4Zero(
) → Vector4D - See Vector4D.zero.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited