Vector2d

@Serializable()
public final class Vector2d

Class for representing 2D vectors (x and y).

Constructors

Link copied to clipboard

Properties

Link copied to clipboard
public final Double x
Link copied to clipboard
public final Double y

Functions

Link copied to clipboard
public final Angle angle()

Returns the angle of this vector.

Link copied to clipboard
public final Angle angleBetween(Vector2d other)

Calculates the angle between two vectors (in radians).

Link copied to clipboard
public final Double cross(Vector2d other)

Returns the 2D cross product of two vectors.

Link copied to clipboard
public final Double distTo(Vector2d other)

Returns the distance between two vectors.

Link copied to clipboard
public final Vector2d div(Double scalar)

Divides this vector by a scalar.

Link copied to clipboard
public final Double dot(Vector2d other)

Returns the dot product of two vectors.

Link copied to clipboard
public final Boolean epsilonEquals(Vector2d other)

Returns whether two vectors are approximately equal (within EPSILON).

Link copied to clipboard
public final Vector2d minus(Vector2d other)

Subtracts two vectors.

Link copied to clipboard
public final Double norm()

Returns the magnitude of this vector.

Link copied to clipboard
public final Vector2d plus(Vector2d other)

Adds two vectors.

Link copied to clipboard
public final static Vector2d polar(Double r, Angle theta)

Returns a vector in Cartesian coordinates (x, y) from one in polar coordinates (r, theta).

Link copied to clipboard
public final Vector2d projectOnto(Vector2d other)

Returns the projection of this vector onto another.

Link copied to clipboard
public final Vector2d rotated(Angle angle)

Rotates this vector by angle.

Link copied to clipboard
public final Double squaredNorm()

Returns the squared magnitude of this vector.

Link copied to clipboard
public final Vector2d times(Double scalar)

Multiplies this vector by a scalar.

Link copied to clipboard
public String toString()
Link copied to clipboard
public final Vector2d unaryMinus()

Returns the negative of this vector.