mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-10 10:25:36 +01:00
35 lines
871 B
JavaScript
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' ]
|
|
};
|
|
|