Skip to content

Commit

Permalink
AGIS mesh boundaries (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
KatKatKateryna authored Sep 16, 2024
1 parent 359954c commit 466ac5e
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ ITypedConverter<Row, Base> attributeConverter
foreach (SGIS.PolygonGeometry polygon in polygons)
{
// POC: check for voids, we cannot generate display value correctly if any of the polygons have voids
if (polygon.voids.Count > 0)
{
return new();
}
// Return meshed boundary for now, ignore voids
// if (polygon.voids.Count > 0)
// {
// return new();
// }

// ensure counter-clockwise orientation for up-facing mesh faces
bool isClockwise = polygon.boundary.IsClockwisePolygon();
Expand Down

0 comments on commit 466ac5e

Please sign in to comment.