QuinticPolynomial

class QuinticPolynomial(start: Double, startDeriv: Double, startSecondDeriv: Double, end: Double, endDeriv: Double, endSecondDeriv: Double)

Quintic Bezier Polynomial

Constructors

Link copied to clipboard
constructor(start: Double, startDeriv: Double, startSecondDeriv: Double, end: Double, endDeriv: Double, endSecondDeriv: Double)

Properties

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

Functions

Link copied to clipboard

Returns the derivative of the polynomial at t.

Link copied to clipboard
operator fun get(t: Double): Double

Returns the value of the polynomial at t.

Link copied to clipboard

Returns the second derivative of the polynomial at t.

Link copied to clipboard

Returns the third derivative of the polynomial at t.

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