All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.viseon.threejs.declarations.math.Interpolant.kt Maven / Gradle / Ivy

Go to download

Kotlin wrapper for ThreeJs, javascript library for 3d rendering

There is a newer version: 126.0.0
Show newest version
@file:JsModule("three")
package ch.viseon.threejs.declarations.math

	/**
	* Abstract base class of interpolants over parametric samples. The parameter domain is one dimensional, typically the time or a path along a curve defined by the data. The sample values can have any dimensionality and derived classes may apply special interpretations to the data. This class provides the interval seek in a Template Method, deferring the actual interpolation to derived classes. Time complexity is **O(1)** for linear access crossing at most two points and **O(log N)** for random access, where **N** is the number of positions. References: [link:http://www.oodesign.com/template-method-pattern.html http://www.oodesign.com/template-method-pattern.html]
	*/
open external class Interpolant{

	/**
	* 
	*/
	open var parameterPositions: dynamic  = definedExternally


	/**
	* 
	*/
	open var resultBuffer: dynamic  = definedExternally


	/**
	* 
	*/
	open var sampleValues: dynamic  = definedExternally


	/**
	* Optional, subclass-specific settings structure.
	*/
	open var settings: dynamic  = definedExternally


	/**
	* 
	*/
	open var valueSize: dynamic  = definedExternally


	/**
	* Evaluate the interpolant at position **t**.
	*/
	open fun evaluate(t: Double = definedExternally) : dynamic
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy