mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
purdge old modeling commands.
This commit is contained in:
parent
f58dd8018c
commit
80c08eede3
2 changed files with 3 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ export const ModelerWorkspace: WorkbenchConfig = {
|
||||||
"SHELL_TOOL", "FILLET_TOOL", "SCALE_BODY","-",
|
"SHELL_TOOL", "FILLET_TOOL", "SCALE_BODY","-",
|
||||||
"MIRROR_BODY", "PATTERN_LINEAR", "PATTERN_RADIAL", "-",
|
"MIRROR_BODY", "PATTERN_LINEAR", "PATTERN_RADIAL", "-",
|
||||||
"CYLINDER", "BOX", "CONE", "SPHERE", "TORUS", "-",
|
"CYLINDER", "BOX", "CONE", "SPHERE", "TORUS", "-",
|
||||||
"HOLE_TOOL", "-", 'GET_VOLUME', "IMPORT_MODEL","DELETE_BODY"
|
"HOLE_TOOL", "-", 'GET_VOLUME', "IMPORT_MODEL","DELETE_BODY",
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
icon: GiCubes
|
icon: GiCubes
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ import createDatumOperation from "cad/craft/datum/create/createDatumOperation";
|
||||||
import moveDatumOperation from "cad/craft/datum/move/moveDatumOperation";
|
import moveDatumOperation from "cad/craft/datum/move/moveDatumOperation";
|
||||||
import rotateDatumOperation from "cad/craft/datum/rotate/rotateDatumOperation";
|
import rotateDatumOperation from "cad/craft/datum/rotate/rotateDatumOperation";
|
||||||
import datumOperation from "cad/craft/primitives/plane/planeOperation";
|
import datumOperation from "cad/craft/primitives/plane/planeOperation";
|
||||||
|
import spatialCurveOperation from "cad/craft/spatialCurve/spatialCurveOperation";
|
||||||
import {Plugin} from "plugable/pluginSystem";
|
import {Plugin} from "plugable/pluginSystem";
|
||||||
import {WorkbenchService} from "cad/workbench/workbenchService";
|
import {WorkbenchService} from "cad/workbench/workbenchService";
|
||||||
import {OperationService} from "cad/craft/operationPlugin";
|
import {OperationService} from "cad/craft/operationPlugin";
|
||||||
|
|
@ -38,5 +39,6 @@ function registerCoreOperations(ctx: WorkbenchesLoaderInputContext) {
|
||||||
moveDatumOperation,
|
moveDatumOperation,
|
||||||
rotateDatumOperation,
|
rotateDatumOperation,
|
||||||
datumOperation,
|
datumOperation,
|
||||||
|
spatialCurveOperation,
|
||||||
] as any);
|
] as any);
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue