ch.viseon.threejs.declarations.geometries.TorusGeometry.kt Maven / Gradle / Ivy
@file:JsModule("three")
package ch.viseon.threejs.declarations.geometries
/**
* A class for generating torus geometries
*/
open external class TorusGeometry(radius: Double = definedExternally, tube: Double = definedExternally, radialSegments: Int = definedExternally, tubularSegments: Int = definedExternally, arc: Double = 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
}