main.cesium.GeometryFactory.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* Base class for all geometry creation utility classes that can be passed to [GeometryInstance]
* for asynchronous geometry creation.
* @see Online Documentation
*/
external class GeometryFactory {
companion object {
/**
* Returns a geometry.
* @param [geometryFactory] A description of the circle.
* @return The computed vertices and indices.
* @see Online Documentation
*/
fun createGeometry(geometryFactory: GeometryFactory): Geometry?
}
}