[PolyCollection] copy vertex offsets when making normalized form

This commit is contained in:
Jan Petykiewicz 2026-04-01 21:15:44 -07:00
commit df578d7764
2 changed files with 25 additions and 1 deletions

View file

@ -219,7 +219,7 @@ class PolyCollection(Shape):
(offset, scale / norm_value, rotation, False),
lambda: PolyCollection(
vertex_lists=rotated_vertices * norm_value,
vertex_offsets=self._vertex_offsets,
vertex_offsets=self._vertex_offsets.copy(),
),
)