mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-24 09:26:43 +01:00
25 lines
584 B
JavaScript
25 lines
584 B
JavaScript
export default {
|
|
'CUT': 'c',
|
|
'EXTRUDE': 'e',
|
|
'PLANE': 'p',
|
|
'BOX': 'b',
|
|
'ZoomIn': '=', //it has plus symbol
|
|
'ZoomOut': '-',
|
|
'LookAtFace': '0',
|
|
'CycleFacesNext': ']',
|
|
'CycleFacesPrev': '[',
|
|
'ToggleCameraMode': '/',
|
|
'StandardViewFront': '1',
|
|
'StandardViewBack': '2',
|
|
'StandardViewLeft': '3',
|
|
'StandardViewRight': '4',
|
|
'StandardViewTop': '5',
|
|
'StandardViewBottom': '6',
|
|
'StandardView3Way': '7',
|
|
'menu.craft': 'shift+c',
|
|
'menu.primitives': 'shift+a',
|
|
'menu.main': 'space',
|
|
'Save': 'ctrl+s',
|
|
'Info': 'F1',
|
|
'DebugOpenBrepDebugger': 'ctrl+b'
|
|
};
|