Vector4
Defined in: client/api.d.ts:1595
Mutable four-dimensional vector exposed as Core.Vector4.
Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new Vector4(
x,y,z,w):Vector4
Defined in: client/api.d.ts:1603
Creates a vector from four numeric components.
Parameters
Section titled “Parameters”number
Initial X component.
number
Initial Y component.
number
Initial Z component.
number
Initial W component.
Returns
Section titled “Returns”Vector4
Methods
Section titled “Methods”add(
other):this
Defined in: client/api.d.ts:1640
Adds another vector to this vector in place.
Parameters
Section titled “Parameters”Vector4
Vector to add component-wise.
Returns
Section titled “Returns”this
This mutated vector for chaining.
clone()
Section titled “clone()”clone():
Vector4
Defined in: client/api.d.ts:1705
Creates an independent copy of this vector.
Returns
Section titled “Returns”Vector4
New vector with the same components.
distance()
Section titled “distance()”distance(
other):number
Defined in: client/api.d.ts:1675
Computes Euclidean distance to another vector.
Parameters
Section titled “Parameters”Vector4
Vector to measure from this vector.
Returns
Section titled “Returns”number
Distance between the two vectors.
div(
scalar):this
Defined in: client/api.d.ts:1661
Divides this vector by a scalar in place.
Parameters
Section titled “Parameters”scalar
Section titled “scalar”number
Divisor applied to every component; must be non-zero.
Returns
Section titled “Returns”this
This mutated vector for chaining.
dot(
other):number
Defined in: client/api.d.ts:1668
Computes the dot product without changing either vector.
Parameters
Section titled “Parameters”Vector4
Vector used for the dot product.
Returns
Section titled “Returns”number
Scalar dot product.
lerp()
Section titled “lerp()”lerp(
target,t):this
Defined in: client/api.d.ts:1689
Linearly interpolates this vector toward a target in place.
Parameters
Section titled “Parameters”target
Section titled “target”Vector4
Destination vector.
number
Interpolation factor; 0 keeps the current value and 1 reaches target.
Returns
Section titled “Returns”this
This mutated vector for chaining.
mul(
scalar):this
Defined in: client/api.d.ts:1654
Multiplies this vector by a scalar in place.
Parameters
Section titled “Parameters”scalar
Section titled “scalar”number
Multiplier applied to every component.
Returns
Section titled “Returns”this
This mutated vector for chaining.
normalize()
Section titled “normalize()”normalize():
this
Defined in: client/api.d.ts:1681
Normalizes this vector in place; a zero vector remains unchanged.
Returns
Section titled “Returns”this
This mutated vector for chaining.
set(
x,y,z,w):this
Defined in: client/api.d.ts:1699
Replaces all components in place.
Parameters
Section titled “Parameters”number
Replacement X component.
number
Replacement Y component.
number
Replacement Z component.
number
Replacement W component.
Returns
Section titled “Returns”this
This mutated vector for chaining.
sub(
other):this
Defined in: client/api.d.ts:1647
Subtracts another vector from this vector in place.
Parameters
Section titled “Parameters”Vector4
Vector to subtract component-wise.
Returns
Section titled “Returns”this
This mutated vector for chaining.
toJSON()
Section titled “toJSON()”toJSON():
object
Defined in: client/api.d.ts:1717
Converts this vector to a plain object for JSON.stringify.
Returns
Section titled “Returns”object
Object containing the current components.
w:
number
x:
number
y:
number
z:
number
toString()
Section titled “toString()”toString():
string
Defined in: client/api.d.ts:1711
Formats this vector for logging and debugging.
Returns
Section titled “Returns”string
Text in Vector4(x, y, z, w) form.
staticone():Vector4
Defined in: client/api.d.ts:1729
Creates a vector whose components are one.
Returns
Section titled “Returns”Vector4
New Vector4(1, 1, 1, 1).
zero()
Section titled “zero()”
staticzero():Vector4
Defined in: client/api.d.ts:1723
Creates a zero vector.
Returns
Section titled “Returns”Vector4
New Vector4(0, 0, 0, 0).
Properties
Section titled “Properties”length
Section titled “length”
readonlylength:number
Defined in: client/api.d.ts:1628
Read-only Euclidean magnitude of this vector.
lengthSquared
Section titled “lengthSquared”
readonlylengthSquared:number
Defined in: client/api.d.ts:1633
Read-only squared magnitude, avoiding a square-root calculation.
w:
number
Defined in: client/api.d.ts:1623
Mutable W component.
x:
number
Defined in: client/api.d.ts:1608
Mutable X component.
y:
number
Defined in: client/api.d.ts:1613
Mutable Y component.
z:
number
Defined in: client/api.d.ts:1618
Mutable Z component.
