poprawiono usuwanie niepoprawnych dzialek

This commit is contained in:
Kacper Donat 2019-11-17 16:41:35 +01:00
parent 841bdb9ee7
commit cb2a6b16f3
2 changed files with 6 additions and 5 deletions

View File

@ -132,11 +132,7 @@ namespace Assets.AnnotationPass
}
// remove outside field
city.Fields.RemoveAll(field =>
{
var points = field.Boundary.Take(3).ToArray();
return !PointUtils.IsClockwise(points[0], points[1], points[2]);
});
city.Fields.RemoveAll(field => !PointUtils.IsClockwise(field.Boundary));
}
public void Annotate(Map map)

View File

@ -60,6 +60,11 @@ namespace Assets.Common
return xa * yb - xb * ya < 0;
}
public static bool IsClockwise(IEnumerable<Point> points)
{
return points.Zip(points.RotateRight(), (a, b) => (b.x - a.x) * (b.y + a.y)).Aggregate((a, b) => a + b) < 0;
}
public static bool IsPointInside(Point point, Point[] polygon)
{
var j = polygon.Length - 1;