Line

@Serializable
@SerialName(value = "Line")
data class Line(val begin: Vector2d, val dir: Vector2d, val length: Double) : PositionPath<Arclength>

Line beginning at position begin, pointed in direction dir, and having length length.

Parameters

dir

unit vector

Constructors

Link copied to clipboard
constructor(begin: Vector2d, end: Vector2d)

Makes line connecting begin to end.

constructor(begin: Vector2d, dir: Vector2d, length: Double)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
Link copied to clipboard
open fun end(n: Int): Vector2dDual<Arclength>
Link copied to clipboard
open operator override fun get(param: Double, n: Int): Vector2dDual<Arclength>
Link copied to clipboard
open override fun length(): Double
Link copied to clipboard
open fun project(query: Vector2d, init: Double = 0.0): Double
Link copied to clipboard

Creates a PosePath using this path for position and constant heading.

Link copied to clipboard
open fun withLinearHeading(startHeading: Rotation2d, endHeading: Rotation2d): HeadingPosePath
open fun withLinearHeading(startHeading: Double, endHeading: Double): HeadingPosePath

Creates a PosePath using this path for position and a linear interpolation between startHeading and endHeading for heading.

Link copied to clipboard
open fun withSplineHeading(startHeading: Rotation2d, endHeading: Rotation2d): HeadingPosePath
open fun withSplineHeading(startHeading: Double, endHeading: Double): HeadingPosePath

Creates a PosePath using this path for position and a linear interpolation between startHeading and endHeading for heading.

Link copied to clipboard

Creates a PosePath using this path for position and its tangent for heading.