jsketcher/web/app/3d/menu/menu-config.js
2016-10-14 01:19:08 -07:00

35 lines
871 B
JavaScript

export const file = {
label: 'file',
cssIcons: ['file'],
actions: ['Save', 'StlExport']
};
export const craft = {
label: 'craft',
cssIcons: ['magic'],
info: 'set of available craft operations on a solid',
actions: ['PAD', 'CUT', 'SHELL']
};
export const primitives = {
label: 'add',
cssIcons: ['cube', 'plus'],
info: 'set of available solid creation operations',
actions: ['PLANE', 'BOX', 'SPHERE']
};
export const boolean = {
label: 'bool',
cssIcons: ['pie-chart'],
info: 'set of available boolean operations',
actions: ['INTERSECTION', 'DIFFERENCE', 'UNION']
};
export const main = {
label: 'start',
cssIcons: ['rocket'],
info: 'common set of actions',
actions: ['PAD', 'CUT', 'SHELL', '-', 'INTERSECTION', 'DIFFERENCE', 'UNION', '-', 'PLANE', 'BOX', 'SPHERE', '-',
'EditFace', '-', 'DeselectAll', 'RefreshSketches' ]
};