mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-16 13:32:37 +01:00
23 lines
No EOL
707 B
TypeScript
23 lines
No EOL
707 B
TypeScript
import EXTRUDE from './features/extrude/extrude.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';
|
|
|
|
export default {
|
|
|
|
workbenchId: 'modeler',
|
|
features: [
|
|
EXTRUDE,
|
|
primitive_box,
|
|
primitive_cone,
|
|
primitive_cylinder,
|
|
primitive_sphere,
|
|
primitive_torus,
|
|
hole_tool,
|
|
fillet_tool,
|
|
]
|
|
} |