jsketcher/modules/workbenches/sheetMetal/index.ts
2022-08-14 22:14:27 -07:00

33 lines
No EOL
742 B
TypeScript

import {WorkbenchConfig} from "cad/workbench/workbenchService";
//imports of feature history type commands
import {smTabOperation} from "./features/smTab/smTab.operation";
import {smFlangeOperation} from "./features/smFlange/smFlange.operation";
import {GiFoldedPaper} from "react-icons/gi";
//imports of action type commands
export const SheetMetalWorkspace: WorkbenchConfig = {
workbenchId: 'SheetMetal',
features: [
smTabOperation,
smFlangeOperation,
],
actions: [],
ui: {
toolbar: [
'DATUM_CREATE', 'PLANE', 'EditFace', '-',
"EXTRUDE", "-",
"BOOLEAN", "-",
"FILLET_TOOL", "MIRROR_BODY", "-",
"HOLE_TOOL", "-",
"SM_TAB","SM_FLANGE"
]
},
icon: GiFoldedPaper
}