@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
22 lines (21 loc) • 693 B
TypeScript
import { Mesh } from "../mesh.js";
import type { Scene } from "../../scene.js";
/**
* Creates a hemisphere mesh
* @param name defines the name of the mesh
* @param options defines the options used to create the mesh
* @param scene defines the hosting scene
* @returns the hemisphere mesh
*/
export declare function CreateHemisphere(name: string, options?: {
segments?: number;
diameter?: number;
sideOrientation?: number;
}, scene?: Scene): Mesh;
/**
* Class containing static functions to help procedurally build meshes
* @deprecated use the function directly from the module
*/
export declare const HemisphereBuilder: {
CreateHemisphere: typeof CreateHemisphere;
};