Ensure counter-clockwise order of poly vertices

This commit is contained in:
DBotThePony 2024-04-28 20:07:23 +07:00
parent 4c959b82a9
commit fb9871f45b
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -455,6 +455,9 @@ class Poly private constructor(val edges: ImmutableList<Line2d>, val vertices: I
} else if (list.size == 1) {
LOGGER.warn("Accepting degenerate poly with 1 points from asset ${AssetPathStack.lastFile()} to match original engine behavior")
return Poly(listOf(list[0], list[0], list[0], list[0]))
} else if (list[1].cross(list[0]) > 0.0) {
// HACK: Fix clockwise specified polygons in coming from JSON
return Poly(list.asReversed())
}
return Poly(list)