mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-16 05:23:19 +01:00
29 lines
No EOL
991 B
TypeScript
29 lines
No EOL
991 B
TypeScript
import EXTRUDE from './features/extrude/extrude.operation';
|
|
import RevolveOperation from './features/revolve_tool/revolve.operation';
|
|
import primitive_box from './features/primitive_box';
|
|
import primitive_cone from './features/primitive_cone';
|
|
import primitive_cylinder from './features/primitive_cylinder';
|
|
import primitive_sphere from './features/primitive_sphere';
|
|
import primitive_torus from './features/primitive_torus';
|
|
import hole_tool from './features/hole_tool';
|
|
import fillet_tool from './features/fillet_tool';
|
|
import boolean_tool from './features/boolean_tool/boolean.operation';
|
|
import ShellOperation from './features/shell_tool/shell.operation';
|
|
|
|
export default {
|
|
|
|
workbenchId: 'modeler',
|
|
features: [
|
|
EXTRUDE,
|
|
primitive_box,
|
|
primitive_cone,
|
|
primitive_cylinder,
|
|
primitive_sphere,
|
|
primitive_torus,
|
|
hole_tool,
|
|
fillet_tool,
|
|
RevolveOperation,
|
|
boolean_tool,
|
|
ShellOperation,
|
|
]
|
|
} |