![JAR search and dependency download from the Maven repository](/logo.png)
ch.viseon.threejs.declarations.extras.curves.QuadraticBezierCurve.kt Maven / Gradle / Ivy
@file:JsModule("three")
package ch.viseon.threejs.declarations.extras.curves
/**
* Create a smooth 2d quadratic bezier curve, defined by a startpoint, endpoint and a single control point.
*/
open external class QuadraticBezierCurve(v0: ch.viseon.threejs.declarations.math.Vector2 = definedExternally, v1: ch.viseon.threejs.declarations.math.Vector2 = definedExternally, v2: ch.viseon.threejs.declarations.math.Vector2 = definedExternally): ch.viseon.threejs.declarations.extras.core.Curve{
/**
* The startpoint.
*/
open var v0: ch.viseon.threejs.declarations.math.Vector2 = definedExternally
/**
* The control point.
*/
open var v1: ch.viseon.threejs.declarations.math.Vector2 = definedExternally
/**
* The endpoint.
*/
open var v2: ch.viseon.threejs.declarations.math.Vector2 = definedExternally
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy