From f5478b715931b91b03a60bf2291da3ca300d9b8f Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Mon, 22 Jun 2026 14:43:08 +0000 Subject: [PATCH] feat: add index.ts for modification tools --- frontend/src/tools/modification/index.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 frontend/src/tools/modification/index.ts diff --git a/frontend/src/tools/modification/index.ts b/frontend/src/tools/modification/index.ts new file mode 100644 index 0000000..235eb0b --- /dev/null +++ b/frontend/src/tools/modification/index.ts @@ -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 +]; \ No newline at end of file