diff --git a/frontend/src/tools/modification/OffsetTool.ts b/frontend/src/tools/modification/OffsetTool.ts new file mode 100644 index 0000000..d482c9f --- /dev/null +++ b/frontend/src/tools/modification/OffsetTool.ts @@ -0,0 +1,18 @@ +import { Tool } from '../Tool'; +import { Canvas } from '../../canvas/Canvas'; + +export class OffsetTool extends Tool { + name = 'Offset'; + icon = 'offset'; + + constructor(canvas: Canvas) { + super(canvas); + } + + async execute(): Promise { + // Implementation for offset tool + // Select elements and distance + // Update Yjs document with offset elements + // Add to undo history + } +} \ No newline at end of file