mlightcad
Version:
A highly customizable standalone view cube addon for three.js
24 lines (22 loc) • 410 B
text/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 const DEFAULT_FACENAMES: FaceNames = {
top: 'TOP',
front: 'FRONT',
right: 'RIGHT',
back: 'BACK',
left: 'LEFT',
bottom: 'BOTTOM'
}