Class representing a 2D vector. A 2D vector is an ordered pair of numbers (labeled x and y), which can be used to represent a number of things, such as:
(0, 0)
to (x, y)
and the direction is also
measured from (0, 0)
towards (x, y)
.
There are other things a 2D vector can be used to represent, such as momentum vectors, complex numbers and so on, however these are the most common uses in Verge3D.
Iterating through a Vector2 instance will yield its components (x, y)
in the corresponding order.
const a = new v3d.Vector2(0, 1);
// no arguments; will be initialised to (0, 0)
const b = new v3d.Vector2();
const d = a.distanceTo(b);
x — the x value of this vector. Default is 0
.
y — the y value of this vector. Default is 0
.
Creates a new Vector2.
Alias for y.
Read-only flag to check if a given object is of type Vector2.
Alias for x.
Adds v to this vector.
Adds the scalar value s to this vector's x and y values.
Adds the multiple of v and s to this vector.
Computes the angle in radians of this vector with respect to the positive x-axis.
Multiplies this vector (with an implicit 1 as the 3rd component) by m.
The x and y components of this vector are rounded up to the nearest integer value.
min — the minimum x and y values.
max — the maximum x and y values in the desired range.
If this vector's x or y value is greater than the max vector's x or y value, it is replaced by the corresponding value. If this vector's x or y value is less than the min vector's x or y value, it is replaced by the corresponding value.
min — the minimum value the length will be clamped to.
max — the maximum value the length will be clamped to.
If this vector's length is greater than the max value, it is replaced by the max value. If this vector's length is less than the min value, it is replaced by the min value.
min — the minimum value the components will be clamped to.
max — the maximum value the components will be clamped to.
If this vector's x or y values are greater than the max value, they are replaced by the max value. If this vector's x or y values are less than the min value, they are replaced by the min value.
Returns a new Vector2 with the same x and y values as this one.
Copies the values of the passed Vector2's x and y properties to this Vector2.
Computes the distance from this vector to v.
Computes the Manhattan distance from this vector to v.
Computes the squared distance from this vector to v. If you are just comparing the distance with another distance, you should compare the distance squared instead as it is slightly more efficient to calculate.
Divides this vector by v.
Divides this vector by scalar s.
Calculates the dot product of this vector and v.
Calculates the cross product of this vector and v. Note that a 'cross-product' in 2D is not well-defined. This function computes a geometric cross-product often used in 2D graphics
Returns true
if the components of this vector and v are strictly equal; false
otherwise.
The components of this vector are rounded down to the nearest integer value.
array — the source array.
offset — (optional) offset into the array. Default is 0
.
Sets this vector's x value to be array[offset]
and y value to be array[offset + 1]
.
attribute — the source attribute.
index — index in the attribute.
Sets this vector's x and y values from the attribute.
index — 0
or 1
.
If index equals 0 returns the x value.
If index equals 1 returns the y value.
Computes the Euclidean length (straight-line length) from (0, 0) to (x, y).
Computes the Manhattan length of this vector.
Computes the square of the Euclidean length (straight-line length) from (0, 0) to (x, y). If you are comparing the lengths of vectors, you should compare the length squared instead as it is slightly more efficient to calculate.
v — Vector2 to interpolate towards.
alpha — interpolation factor, typically in the closed interval [0, 1]
.
Linearly interpolates between this vector and v, where alpha is the
percent distance along the line: alpha = 0
will be this vector, and alpha = 1
will be v.
v1 — the starting Vector2.
v2 — Vector2 to interpolate towards.
alpha — interpolation factor, typically in the closed interval [0, 1]
.
Sets this vector to be the vector linearly interpolated between v1 and
v2 where alpha is the percent distance along the line connecting the two vectors:
alpha = 0
will be v1, and alpha = 1
will be v2.
Inverts this vector — i.e. sets x = -x
and y = -y
.
Converts this vector to a unit vector — that is, sets it equal to a vector with the same direction as this one, but length 1
.
If this vector's x or y value is less than v's x or y value, replace that value with the corresponding max value.
If this vector's x or y value is greater than v's x or y value, replace that value with the corresponding min value.
Multiplies this vector by v.
Multiplies this vector by scalar s.
center — the point around which to rotate.
angle — the angle to rotate, in radians.
Rotates this vector around center by angle radians.
The components of this vector are rounded to the nearest integer value.
The components of this vector are rounded towards zero (up if negative, down if positive) to an integer value.
Sets the x and y components of this vector.
index — 0
or 1
.
value — component value.
If index equals 0 set x to value.
If index equals 1 set y to value.
Sets this vector to a vector with the same direction as this one, but length l.
Sets the x and y values of this vector both equal to scalar.
Replaces this vector's x value with x.
Replaces this vector's y value with y.
Subtracts v from this vector.
Subtracts s from this vector's x and y components.
array — (optional) array to store this vector to. If this is not provided, a new array will be created.
offset — (optional) optional offset into the array.
Returns an array [x, y], or copies x and y into the provided array.
Sets each component of this vector to a pseudo-random value between 0 and 1, excluding 1.
For more info on how to obtain the source code of this module see this page.