mirror of
https://github.com/bvanroll/cs-map-project.git
synced 2025-09-02 13:52:41 +00:00
scaling is nu gefixed, maar.. die colonies gaan ons altijd fucken
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user