feat: add index.ts for modification tools

This commit is contained in:
2026-06-22 14:43:08 +00:00
parent 7f75dd18a0
commit f5478b7159
+21
View File
@@ -0,0 +1,21 @@
export { MoveTool } from './MoveTool';
export { CopyTool } from './CopyTool';
export { RotateTool } from './RotateTool';
export { ScaleTool } from './ScaleTool';
export { MirrorTool } from './MirrorTool';
export { TrimTool } from './TrimTool';
export { ExtendTool } from './ExtendTool';
export { FilletTool } from './FilletTool';
export { OffsetTool } from './OffsetTool';
export const modificationTools = [
MoveTool,
CopyTool,
RotateTool,
ScaleTool,
MirrorTool,
TrimTool,
ExtendTool,
FilletTool,
OffsetTool
];