@mlightcad/three-viewcube
Version:
A highly customizable standalone view cube addon for three.js
16 lines • 345 B
TypeScript
/**
* Interface to define text in each face of view cube
*/
export interface FaceNames {
top: string;
front: string;
right: string;
back: string;
left: string;
bottom: string;
}
/**
* Default texts in each face of view cube
*/
export declare const DEFAULT_FACENAMES: FaceNames;
//# sourceMappingURL=faceNames.d.ts.map