lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
4 lines (3 loc) • 653 B
TypeScript
import { CylinderGeometry } from "three";
export type CylinderParams = ConstructorParameters<typeof CylinderGeometry>;
export declare const requestCylinderGeometry: (params: [radiusTop?: number | undefined, radiusBottom?: number | undefined, height?: number | undefined, radialSegments?: number | undefined, heightSegments?: number | undefined, openEnded?: boolean | undefined, thetaStart?: number | undefined, thetaLength?: number | undefined], paramString?: string, context?: void) => CylinderGeometry, releaseCylinderGeometry: (object: CylinderGeometry | null | undefined) => boolean | import("@lincode/promiselikes").Cancellable | null | undefined;