info.laht.threekt.extras.curves.LineCurve3.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.curves
import info.laht.threekt.extras.core.Curve
import info.laht.threekt.math.Vector3
open external class LineCurve3(
v1: Vector3 = definedExternally,
v2: Vector3 = definedExternally
) : Curve {
override fun clone() : LineCurve3
fun copy(curve3: LineCurve3) : LineCurve3
}