ArcLengthParameterization

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.

Parameters

tLo

the lower bound of the internal parameter

tHi

the upper bound of the internal parameter

maxSegmentLength

the maximum distance between two samples

maxDepth

the maximum number of times the curve can be divided into samples

maxDeltaK

the maximum change in curvature between two samples

Constructors

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

Properties

Link copied to clipboard
@get:JvmName(name = "length")
val length: Double

Returns the computed curve length.

Functions

Link copied to clipboard

Uses the samples computed to find the value of the internal parameter t that corresponds to the given length along the curve s.