Optimize elevator editing performance with live previews

This commit is contained in:
sudhir
2026-05-09 19:09:48 +05:30
parent 0514363136
commit 2480be91b1
59 changed files with 4299 additions and 176 deletions
@@ -0,0 +1,5 @@
import { type Point2D, unionPolygons } from '../lib/polygon-union'
export function mergeSurfaceHolePolygons(holes: Point2D[][]): Point2D[][] {
return unionPolygons(holes)
}