Vector used for 2D math. 2-element structure that can be used to represent positions in 2d space or any other pair of numeric values. http://docs.godotengine.org/en/3.0/tutorials/math/index.html Constructs a new Vector2 from the given x and y. Returns a new vector with all components in absolute values (i.e. positive). Returns the vector's angle in radians with respect to the x-axis, or [code](1, 0)[/code] vector. Equivalent to the result of atan2 when called with the vector's x and y as parameters: [code]atan2(x, y)[/code]. Returns the angle in radians between the two vectors. Returns the angle in radians between the line connecting the two points and the x coordinate. Returns the ratio of x to y. Returns the vector "bounced off" from a plane defined by the given normal. Returns the vector with a maximum length. Returns the 2 dimensional analog of the cross product with the given vector. Cubicly interpolates between this vector and [code]b[/code] using [code]pre_a[/code] and [code]post_b[/code] as handles, and returns the result at position [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], or a percentage of how far along the interpolation is. Returns the squared distance to vector [code]b[/code]. Prefer this function over [method distance_to] if you need to sort vectors or need the squared distance for some formula. Returns the distance to vector [code]b[/code]. Returns the dot product with vector [code]b[/code]. Remove the fractional part of x and y. Returns [code]true[/code] if the vector is normalized. Returns the vector's length. Returns the vector's length squared. Prefer this function over [member length] if you need to sort vectors or need the squared length for some formula. Returns the result of the linear interpolation between this vector and [code]b[/code] by amount [code]t[/code]. [code]t[/code] is in the range of [code]0.0 - 1.0[/code], a percentage of how far along the interpolation is. Returns the vector scaled to unit length. Equivalent to [code]v / v.length()[/code]. Returns the vector reflected from a plane defined by the given normal. Returns the vector rotated by [code]phi[/code] radians. Returns the result of SLERP between this vector and "b", by amount "t". "t" should be a float of 0.0-1.0, a percentage of how far along the interpolation is. Both vectors need to be normalized. Returns the component of the vector along a plane defined by the given normal. Returns the vector snapped to a grid with the given size. Returns a perpendicular vector. The vector's x component. The vector's y component.