info.laht.threekt.extras.core.CurvePath.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wrapper Show documentation
Show all versions of wrapper Show documentation
kotlin wrappers for three.js (https://threejs.org/)
The newest version!
@file:JsQualifier("THREE")
package info.laht.threekt.extras.core
open external class CurvePath : Curve {
var curves: List>
var autoClose: Boolean
fun add(curve: Curve)
fun closePath()
fun getPoint(t: Double)
override fun clone(): CurvePath
fun copy(source: CurvePath) : CurvePath
}