Pose2d

@Serializable
data class Pose2d @JvmOverloads constructor(val x: Double = 0.0, val y: Double = 0.0, val heading: Angle = 0.rad)

Class for representing 2D robot poses (x, y, and heading) and their derivatives.

Constructors

Link copied to clipboard
constructor(pos: Vector2d, heading: Angle = 0.rad)
constructor(x: Double = 0.0, y: Double = 0.0, heading: Angle = 0.rad)

Properties

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

Functions

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

Divides this pose by a scalar.

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

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

Link copied to clipboard

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

Link copied to clipboard

Returns the vector representation of this pose's heading.

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

Subtracts two poses.

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

Adds two poses.

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

Multiplies this pose by a scalar.

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

Returns the negative of this pose.

Link copied to clipboard
fun vec(): Vector2d

Returns this pose as a vector (i.e., without heading).