RaylibMatrixExtFlatWeb class

Inheritance

Constructors

RaylibMatrixExtFlatWeb(Raylib rl)

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
MatrixAdd(MatrixD left, MatrixD right) → MatrixD
Add two matrices
override
MatrixCompose(Vector3D translation, QuaternionD rotation, Vector3D scale) → MatrixD
Compose a transformation matrix from rotational, translational and scaling components
override
MatrixDecompose(MatrixD mat, StructPointer<Vector3D> translation, StructPointer<QuaternionD> rotation, StructPointer<Vector3D> scale) → void
Decompose a transformation matrix into its rotational, translational and scaling components and remove shear
override
MatrixDeterminant(MatrixD mat) → double
Compute matrix determinant
override
MatrixFrustum(double left, double right, double bottom, double top, double nearPlane, double farPlane) → MatrixD
Get perspective projection matrix
override
MatrixIdentity() → MatrixD
Get identity matrix
override
MatrixInvert(MatrixD mat) → MatrixD
Invert provided matrix
override
MatrixLookAt(Vector3D eye, Vector3D target, Vector3D up) → MatrixD
Get camera look-at matrix (view matrix)
override
MatrixMultiply(MatrixD left, MatrixD right) → MatrixD
Get two matrix multiplication
override
MatrixMultiplyValue(MatrixD left, double value) → MatrixD
Multiply matrix components by value
override
MatrixOrtho(double left, double right, double bottom, double top, double nearPlane, double farPlane) → MatrixD
Get orthographic projection matrix
override
MatrixPerspective(double fovY, double aspect, double nearPlane, double farPlane) → MatrixD
Get perspective projection matrix
override
MatrixRotate(Vector3D axis, double angle) → MatrixD
Create rotation matrix from axis and angle
override
MatrixRotateX(double angle) → MatrixD
Get x-rotation matrix
override
MatrixRotateXYZ(Vector3D angle) → MatrixD
Get xyz-rotation matrix
override
MatrixRotateY(double angle) → MatrixD
Get y-rotation matrix
override
MatrixRotateZ(double angle) → MatrixD
Get z-rotation matrix
override
MatrixRotateZYX(Vector3D angle) → MatrixD
Get zyx-rotation matrix
override
MatrixScale(double x, double y, double z) → MatrixD
Get scaling matrix
override
MatrixSubtract(MatrixD left, MatrixD right) → MatrixD
Subtract two matrices (left - right)
override
MatrixToFloatV(MatrixD mat) → float16D
Get float array of matrix data
override
MatrixTrace(MatrixD mat) → double
Get the trace of the matrix (sum of the values along the diagonal)
override
MatrixTranslate(double x, double y, double z) → MatrixD
Get translation matrix
override
MatrixTranspose(MatrixD mat) → MatrixD
Transposes provided matrix
override
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
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