ParametricCurve

abstract class ParametricCurve

Parametric curve with two components (x and y). These curves are reparameterized from an internal parameter (t) to the arc length parameter (s). Note that the arc length reparameterization is lazy, meaning that it is computed only when needed. To precompute, use reparameterize.

Inheritors

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
inner class ArcLengthParameterization(tLo: Double, tHi: Double, maxSegmentLength: Double = 0.25, maxDepth: Int = 15, maxDeltaK: Double = 0.01)

Automatically reparameterizes this curve by computing many small samples. This is computationally expensive and should be avoided unless no faster way is available.

Functions

Link copied to clipboard
fun curvature(s: Double, t: Double = reparam(s)): Double

Computes the curvature of a parametric curve at the internal parameter t.

Link copied to clipboard
fun deriv(s: Double, t: Double = reparam(s)): Vector2d

Returns the derivative s units along the curve.

Link copied to clipboard
fun end(): Vector2d

Returns the end vector.

Link copied to clipboard

Returns the end derivative.

Link copied to clipboard

Returns the end second derivative.

Link copied to clipboard

Returns the end third derivative.

Link copied to clipboard
operator fun get(s: Double, t: Double = reparam(s)): Vector2d

Returns the vector s units along the curve.

Link copied to clipboard
abstract fun length(): Double

Returns the length of the curve.

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

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

Link copied to clipboard
abstract fun reparameterize()

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

Link copied to clipboard
fun secondDeriv(s: Double, t: Double = reparam(s)): Vector2d

Returns the second derivative s units along the curve.

Link copied to clipboard

Returns the start vector.

Link copied to clipboard

Returns the start vector.

Link copied to clipboard

Returns the start second derivative.

Link copied to clipboard

Returns the start third derivative.

Link copied to clipboard
fun tangentAngle(s: Double, t: Double = reparam(s)): Angle

Returns the angle of the tangent line s units along the curve.

Link copied to clipboard

Returns the derivative of the tangent angle s units along the curve.

Link copied to clipboard

Returns the second derivative of the tangent angle s units along the curve.

Link copied to clipboard
fun thirdDeriv(s: Double, t: Double = reparam(s)): Vector2d

Returns the third derivative s units along the curve.