ch.viseon.threejs.declarations.geometries.ParametricGeometry.kt Maven / Gradle / Ivy
@file:JsModule("three")
package ch.viseon.threejs.declarations.geometries
/**
* Generate geometry representing a parametric surface.
*/
open external class ParametricGeometry(func: dynamic = definedExternally, slices: Int = definedExternally, stacks: Int = definedExternally): ch.viseon.threejs.declarations.core.Geometry{
/**
* An object with a property for each of the constructor parameters. Any modification after instantiation does not change the geometry.
*/
open var parameters: dynamic = definedExternally
}