class Waypoint
Class for representing the end points of interpolated quintic splines.
Waypoint(pos: Vector2d, deriv: Vector2d = Vector2d(), secondDeriv: Vector2d = Vector2d())Waypoint(x: Double, y: Double, dx: Double = 0.0, dy: Double = 0.0, d2x: Double = 0.0, d2y: Double = 0.0)
Class for representing the end points of interpolated quintic splines.  | 
val d2x: Double
x second derivative  | 
|
val d2y: Double
y second derivative  | 
|
val dx: Double
x derivative  | 
|
val dy: Double
y derivative  | 
|
val x: Double
x position  | 
|
val y: Double
y position  | 
fun deriv(): Vector2d | 
|
fun pos(): Vector2d | 
|
fun secondDeriv(): Vector2d |