mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
27 lines
No EOL
559 B
TypeScript
27 lines
No EOL
559 B
TypeScript
import {WorkbenchConfig} from "cad/workbench/workbenchService";
|
|
|
|
//imports of feature history type commands
|
|
import {AutoRouteOperation} from "./features/autoRoute/autoRoute.operation";
|
|
import {GiFoldedPaper} from "react-icons/gi";
|
|
|
|
|
|
//imports of action type commands
|
|
|
|
|
|
|
|
export const RoutingElectricalWorkspace: WorkbenchConfig = {
|
|
|
|
workbenchId: 'RoutingElectrical',
|
|
features: [
|
|
AutoRouteOperation,
|
|
|
|
],
|
|
actions: [],
|
|
ui: {
|
|
toolbar: [
|
|
'DATUM_CREATE', 'PLANE', 'EditFace', '-',
|
|
'RE_AUTO_ROUTE',
|
|
]
|
|
},
|
|
icon: GiFoldedPaper
|
|
} |