main.cesium.LinearSpline.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:Suppress(
"NON_EXTERNAL_DECLARATION_IN_INAPPROPRIATE_FILE",
)
package cesium
/**
* A spline that uses piecewise linear interpolation to create a curve.
* ```
* var times = [ 0.0, 1.5, 3.0, 4.5, 6.0 ];
* var spline = new LinearSpline({
* times : times,
* points : [
* new Cartesian3(1235398.0, -4810983.0, 4146266.0),
* new Cartesian3(1372574.0, -5345182.0, 4606657.0),
* new Cartesian3(-757983.0, -5542796.0, 4514323.0),
* new Cartesian3(-2821260.0, -5248423.0, 4021290.0),
* new Cartesian3(-2539788.0, -4724797.0, 3620093.0)
* ]
* });
*
* var p0 = spline.evaluate(times[0]);
* ```
* @see Online Documentation
*/
@JsName("\$cesium__LinearSpline")
external class LinearSpline(options: ConstructorOptions) {
/**
* @property [times] An array of strictly increasing, unit-less, floating-point times at each point.
* The values are in no way connected to the clock time. They are the parameterization for the curve.
* @property [points] The array of [Cartesian3] control points.
*/
interface ConstructorOptions {
var times: Array
var points: Array
}
/**
* An array of times for the control points.
* @see Online Documentation
*/
val times: Array
/**
* An array of [Cartesian3] control points.
* @see Online Documentation
*/
val points: Array
/**
* Finds an index `i` in `times` such that the parameter
* `time` is in the interval `[times[i], times[i + 1]]`.
* @param [time] The time.
* @return The index for the element at the start of the interval.
* @see Online Documentation
*/
fun findTimeInterval(time: Double): Int
/**
* Wraps the given time to the period covered by the spline.
* @param [time] The time.
* @return The time, wrapped around to the updated animation.
* @see Online Documentation
*/
fun wrapTime(time: Double): Double
/**
* Clamps the given time to the period covered by the spline.
* @param [time] The time.
* @return The time, clamped to the animation period.
* @see Online Documentation
*/
fun clampTime(time: Double): Double
/**
* Evaluates the curve at a given time.
* @param [time] The time at which to evaluate the curve.
* @param [result] The object onto which to store the result.
* @return The modified result parameter or a new instance of the point on the curve at the given time.
* @see Online Documentation
*/
fun evaluate(
time: Double,
result: Cartesian3? = definedExternally,
): Cartesian3
}