task(C2): pixi renderer with incremental element rendering behind adapter

This commit is contained in:
Agent Zero
2026-08-27 08:53:51 +02:00
parent b412a65c33
commit dde5077bf9
3 changed files with 289 additions and 0 deletions
+8
View File
@@ -85,6 +85,14 @@ export class MockAdapter implements RenderAdapter {
this.rec('drawElement', [el, layer, style]);
}
removeElement(id: string): void {
this.rec('removeElement', [id]);
}
clearElements(): void {
this.rec('clearElements', []);
}
drawPreview(el: CADElement | null): void {
this.rec('drawPreview', [el]);
}