UNPKG

ts-game-engine

Version:

Simple WebGL game/render engine written in TypeScript

8 lines (7 loc) 272 B
import { Mesh } from "./Mesh"; import { Scene } from "../Scene"; export declare class SphereMesh extends Mesh { private readonly widthSegments; private readonly heightSegments; constructor(scene: Scene, widthSegments: number, heightSegments: number); }