Vector2D class

Inheritance
Mixed-in types

Constructors

Vector2D({Pointer<Vector2C>? originalPointer, double x = 0, double y = 0})
Vector2D.one()
factory
Vector2D.vec2(num x, num y)
factory
Vector2D.zero()
factory

Properties

$state RaylibTempStructState
Per-instance allocation state tracking slot keys, disposal, and identity.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
length double
no setterinherited
lengthSqr double
no setterinherited
originalPointer Pointer<Vector2C>?
The C-owned or RaylibTemp-owned native pointer for this struct, if any.
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
structIsDisposed bool
Whether structMarkDisposed has been called on this instance.
no setterinherited
structName String
The Dart-side type name of this struct
no setterinherited
structRequiresOriginalPointer bool
Whether this struct requires an originalPointer to function correctly.
no setterinherited
x double
getter/setter pairoverride
y double
getter/setter pairoverride

Methods

add(Vector2D o) Vector2D
inherited
addValue(num value) Vector2D
inherited
angle(Vector2D o) double
inherited
clamp(Vector2D min, Vector2D max) Vector2D
inherited
clampValue(double min, double max) Vector2D
inherited
clone() Vector2D
Returns a deep copy of this instance, preserving RaylibStructBase.originalPointer if present.
override
copy() Vector2D
Returns a deep copy of this instance without RaylibStructBase.originalPointer.
inherited
distance(Vector2D o) double
inherited
distanceSqr(Vector2D o) double
inherited
div(Vector2D o) Vector2D
inherited
divideBy(num o) Vector2D
inherited
dotProduct(Vector2D o) double
inherited
equals(Vector2D o) bool
inherited
format([int x0 = 0, int? y0]) String
inherited
getOriginalPointer() Pointer<Vector2C>
Returns originalPointer, throwing a descriptive StateError if unavailable or this instance RaylibTempStructState.isDisposed.
inherited
getOriginalPointerAndDispose() Pointer<Vector2C>
Returns originalPointer and immediately calls structMarkDisposed.
inherited
invert() Vector2D
inherited
lerp(Vector2D o, double amount) Vector2D
inherited
lineAngle(Vector2D o) double
inherited
max(Vector2D o) Vector2D
inherited
min(Vector2D o) Vector2D
inherited
moveTowards(Vector2D target, double maxDistance) Vector2D
inherited
mul(Vector2D o) Vector2D
inherited
nativeGetIndexedArrayReference(Array<Vector2C> p, int index) Vector2C
override
nativeGetIndexedReference(Pointer<Vector2C> p, int index) Vector2C
override
nativeGetReference(Pointer<Vector2C> p) Vector2C
inherited
nativeReadFrom(Vector2C p) → void
override
nativeWriteInto(Vector2C p) → void
Writes all fields directly into the native struct reference p. For nested structs, use writeInto as well.
override
negate() Vector2D
inherited
normalize() Vector2D
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reflect(Vector2D normal) Vector2D
inherited
refract(Vector2D n, double r) Vector2D
inherited
rotate(double angle) Vector2D
inherited
scale(num o) Vector2D
inherited
set(num x, num y) Vector2D
inherited
setD(Vector2D o) Vector2D
Copies the fields of o into this instance and returns this.
override
signature() String
Returns a human-readable representation of this struct's current field values.
inherited
structAllocateInto(RaylibTemp temp, Pointer<Vector2C> p, String key) → void
Writes all fields into the native struct at p, allocating nested pointers into temp under key as needed.
inherited
structMarkDisposed() → void
Marks this instance as disposed and clears originalPointer.
inherited
structOnOp(void callback(Pointer<Vector2C> p)) → void
Calls callback with originalPointer if it is set, otherwise no-ops.
inherited
structReadFrom(Pointer<Vector2C> p) → void
Reads all fields from the memory at p.
inherited
structSetTag(String newTag) Vector2D
Sets RaylibTempStructState.tag to newTag and returns this for chaining.
inherited
structSyncFromMemory() → void
Syncs all fields from the memory. Requires originalPointer.
inherited
structSyncInto(RaylibTemp temp, Pointer<Vector2C> p, String key) → void
Syncs Dart-side fields into the already-allocated native pointer p.
inherited
structSyncToMemory() → void
Syncs all fields to the memory. Requires originalPointer.
inherited
structWriteInto(Pointer<Vector2C> p) → void
Writes all fields into the memory at p.
inherited
sub(Vector2D o) Vector2D
inherited
subValue(num value) Vector2D
inherited
toArray() List<double>
inherited
toString() String
A string representation of this object.
inherited
transform(MatrixD o) Vector2D
inherited

Operators

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