fix: Bumps #1

Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
This commit is contained in:
Mark Tolmacs
2025-12-20 15:52:30 +00:00
parent 1285a93990
commit 2ec8ac7f79
2 changed files with 176 additions and 887 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -466,8 +466,8 @@ const drawElementOnCanvas = (
context.fill(path);
} else {
polygons.forEach((polygon, index) => {
// context.fillStyle =
// DEBUG_FREEDRAW_COLORS[index % DEBUG_FREEDRAW_COLORS.length];
context.fillStyle =
DEBUG_FREEDRAW_COLORS[index % DEBUG_FREEDRAW_COLORS.length];
const polygonPath = new Path2D(getSvgPathFromStroke(polygon));
context.fill(polygonPath);
});