scaling is nu gefixed, maar.. die colonies gaan ons altijd fucken

This commit is contained in:
BuildTools
2020-08-06 14:20:51 +02:00
parent 6fca4f27cc
commit 6f9f68a937
27 changed files with 34 additions and 22 deletions

View File

@@ -14,13 +14,22 @@ namespace Globals
{
Punten = punten;
Naam = naam;
MaximumX = Double.MinValue;
MaximumY = Double.MinValue;
MinimumX = Double.MaxValue;
MinimumY = Double.MaxValue;
UpdateMaxEnMinPunt();
}
public PolygonPunten(GeoJSON.Net.Geometry.Polygon polygon, string naam = "", bool reverse = true)
public PolygonPunten(Polygon polygon, string naam = "", bool reverse = true)
{
Naam = naam;
Punten = new List<Punt>();
MaximumX = Double.MinValue;
MaximumY = Double.MinValue;
MinimumX = Double.MaxValue;
MinimumY = Double.MaxValue;
foreach (LineString linestring in polygon.Coordinates)
{