Class representing a 2D [link:https://en.wikipedia.org/wiki/Vector_space 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:
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 three.js.
Iterating through a [name] instance will yield its components `(x, y)` in the corresponding order.
const a = new THREE.Vector2( 0, 1 );
//no arguments; will be initialised to (0, 0)
const b = new THREE.Vector2( );
const d = a.distanceTo( b );
[page:Float x] - the x value of this vector. Default is `0`.
[page:Float y] - the y value of this vector. Default is `0`.
Creates a new [name].
Alias for [page:.y y].
Read-only flag to check if a given object is of type [name].
Alias for [page:.x x].
Adds [page:Vector2 v] to this vector.
Adds the scalar value [page:Float s] to this vector's [page:.x x] and [page:.y y] values.
Adds the multiple of [page:Vector2 v] and [page:Float s] to this vector.
Sets this vector to [page:Vector2 a] + [page:Vector2 b].
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 [page:.x x] and [page:.y y] components of this vector are rounded up to the nearest integer value.
[page:Vector2 min] - the minimum x and y values.
[page:Vector2 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.
[page:Float min] - the minimum value the length will be clamped to
[page:Float 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.
[page:Float min] - the minimum value the components will be clamped to
[page:Float 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 [page:.x x] and [page:.y y] values as this one.
Copies the values of the passed Vector2's [page:.x x] and [page:.y y] properties to this Vector2.
Computes the distance from this vector to [page:Vector2 v].
Computes the [link:https://en.wikipedia.org/wiki/Taxicab_geometry Manhattan distance] from this vector to [page:Vector2 v].
Computes the squared distance from this vector to [page:Vector2 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 [page:Vector2 v].
Divides this vector by scalar [page:Float s].
Calculates the [link:https://en.wikipedia.org/wiki/Dot_product dot product] of this vector and [page:Vector2 v].
Calculates the [link:https://en.wikipedia.org/wiki/Cross_product cross product] of this vector and [page:Vector2 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 [page:Vector2 v] are strictly equal; `false` otherwise.
The components of this vector are rounded down to the nearest integer value.
[page:Array array] - the source array.
[page:Integer offset] - (optional) offset into the array. Default is 0.
Sets this vector's [page:.x x] value to be `array[ offset ]` and [page:.y y] value to be `array[ offset + 1 ]`.
[page:BufferAttribute attribute] - the source attribute.
[page:Integer index] - index in the attribute.
Sets this vector's [page:.x x] and [page:.y y] values from the [page:BufferAttribute attribute].
[page:Integer index] - 0 or 1.
If index equals 0 returns the [page:.x x] value.
If index equals 1 returns the [page:.y y] value.
Computes the [link:https://en.wikipedia.org/wiki/Euclidean_distance Euclidean length] (straight-line length) from (0, 0) to (x, y).
Computes the [link:http://en.wikipedia.org/wiki/Taxicab_geometry Manhattan length] of this vector.
Computes the square of the [link:https://en.wikipedia.org/wiki/Euclidean_distance 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.
[page:Vector2 v] - [page:Vector2] to interpolate towards.
[page:Float alpha] - interpolation factor, typically in the closed interval `[0, 1]`.
Linearly interpolates between this vector and [page:Vector2 v], where alpha is the
percent distance along the line - alpha = 0 will be this vector, and alpha = 1 will be [page:Vector2 v].
[page:Vector2 v1] - the starting [page:Vector2].
[page:Vector2 v2] - [page:Vector2] to interpolate towards.
[page:Float alpha] - interpolation factor, typically in the closed interval `[0, 1]`.
Sets this vector to be the vector linearly interpolated between [page:Vector2 v1] and
[page:Vector2 v2] where alpha is the percent distance along the line connecting the two vectors
- alpha = 0 will be [page:Vector2 v1], and alpha = 1 will be [page:Vector2 v2].
Inverts this vector - i.e. sets x = -x and y = -y.
Converts this vector to a [link:https://en.wikipedia.org/wiki/Unit_vector unit vector] - that is, sets it equal to a vector with the same direction as this one, but [page:.length length] 1.
If this vector's x or y value is less than [page:Vector2 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 [page:Vector2 v]'s x or y value, replace that value with the corresponding min value.
Multiplies this vector by [page:Vector2 v].
Multiplies this vector by scalar [page:Float s].
[page:Vector2 center] - the point around which to rotate.
[page:Float angle] - the angle to rotate, in radians.
Rotates this vector around [page:Vector2 center] by [page:Float 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 [page:.x x] and [page:.y y] components of this vector.
[page:Integer index] - 0 or 1.
[page:Float value] - [page:Float]
If index equals 0 set [page:.x x] to [page:Float value].
If index equals 1 set [page:.y y] to [page:Float value]
Sets this vector to a vector with the same direction as this one, but [page:.length length] [page:Float l].
Sets the [page:.x x] and [page:.y y] values of this vector both equal to [page:Float scalar].
Replaces this vector's [page:.x x] value with [page:Float x].
Replaces this vector's [page:.y y] value with [page:Float y].
Subtracts [page:Vector2 v] from this vector.
Subtracts [page:Float s] from this vector's [page:.x x] and [page:.y y] components.
Sets this vector to [page:Vector2 a] - [page:Vector2 b].
[page:Array array] - (optional) array to store this vector to. If this is not provided, a new array will be created.
[page:Integer offset] - (optional) optional offset into the array.
Returns an array [x, y], or copies x and y into the provided [page:Array array].
Sets each component of this vector to a pseudo-random value between 0 and 1, excluding 1.
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]