chartx3d
Version:
Data Visualization Chart Library
28 lines (26 loc) • 584 B
JavaScript
//viewName
import { version } from '../package.json';
export const MainView = 'main_view';
export const LabelView = 'label_view';
export const VERSION = version;
//停靠位置
export const DUCK = {
LEFT: 'left',
TOP: 'top',
BOTTOM: 'bottom',
RIGHT: 'right',
CENTER: 'center',
TOPLEFT: 'topLeft',
TOPRIGHT: 'topRight',
BOTTOMLEFT: 'bottomLeft',
BOTTOMRIGHT: 'bottomRight'
}
//立方体六个面的名称
export const FaceNames = {
LEFT: 'left',
RIGHT: 'right',
TOP: 'top',
BOTTOM: 'bottom',
FRONT: 'front',
BACK: 'back'
}