Vector2d

@Serializable
data class Vector2d @JvmOverloads constructor(val x: Double = 0.0, val y: Double = 0.0)

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

Constructors

Link copied to clipboard
constructor(x: Double = 0.0, y: Double = 0.0)

Types

Link copied to clipboard
object Static

Properties

Link copied to clipboard
val x: Double = 0.0
Link copied to clipboard
val y: Double = 0.0

Functions

Link copied to clipboard
fun angle(): Angle

Returns the angle of this vector.

Link copied to clipboard
infix fun angleBetween(other: Vector2d): Angle

Calculates the angle between two vectors (in radians).

Link copied to clipboard
infix fun cross(other: Vector2d): Double

Returns the 2D cross product of two vectors.

Link copied to clipboard
infix fun distTo(other: Vector2d): Double

Returns the distance between two vectors.

Link copied to clipboard
operator fun div(scalar: Double): Vector2d

Divides this vector by a scalar.

Link copied to clipboard
infix fun dot(other: Vector2d): Double

Returns the dot product of two vectors.

Link copied to clipboard
infix fun epsilonEquals(other: Vector2d): Boolean

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

Link copied to clipboard
operator fun minus(other: Vector2d): Vector2d

Subtracts two vectors.

Link copied to clipboard
fun norm(): Double

Returns the magnitude of this vector.

Link copied to clipboard
operator fun plus(other: Vector2d): Vector2d

Adds two vectors.

Link copied to clipboard
infix fun projectOnto(other: Vector2d): Vector2d

Returns the projection of this vector onto another.

Link copied to clipboard
fun rotated(angle: Angle): Vector2d

Rotates this vector by angle.

Link copied to clipboard

Returns the squared magnitude of this vector.

Link copied to clipboard
operator fun times(scalar: Double): Vector2d

Multiplies this vector by a scalar.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
operator fun unaryMinus(): Vector2d

Returns the negative of this vector.