Merge pull request #7824 from Abextm/decorative-hulls

Fix DecorativeObject ConvexHulls
This commit is contained in:
Adam
2019-02-16 19:15:18 -05:00
committed by GitHub
4 changed files with 51 additions and 1 deletions

View File

@@ -347,6 +347,12 @@ class DevToolsOverlay extends Overlay
{
graphics.drawPolygon(p);
}
p = decorObject.getConvexHull2();
if (p != null)
{
graphics.drawPolygon(p);
}
}
}