QuinticSpline

Quintic Bezier Spline

Constructors

Link copied to clipboard
constructor(start: QuinticSpline.Knot, end: QuinticSpline.Knot)

Types

Link copied to clipboard
class Knot @JvmOverloads constructor(val x: Double, val y: Double, val dx: Double = 0.0, val dy: Double = 0.0, val d2x: Double = 0.0, val d2y: Double = 0.0)

Class for representing the end points of interpolated quintic splines.

Properties

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

X polynomial (x(t)).

Link copied to clipboard

Y polynomial (y(t)).

Functions

Link copied to clipboard
open override fun length(): Double

Returns the length of the curve.

Link copied to clipboard
open override fun project(query: Vector2d): Double

Returns the nearest point on the curve in terms of the internal parameter t.

fun project(p: Vector2d, tolerance: Double): Double

Projection algorithm based on this paper, but with the Modified Uspensky algorithm instead of using a Sturm sequence.

Link copied to clipboard
open override fun reparameterize()

If this curve can not trivially be reparameterized to an arc length parameter, it should be done here.