Concave Hull implementation
I am trying to implement the algorithm described in the following http://repositorium.sdum.uminho.pt/bitstream/1822/6429/1/ConcaveHull_ACM_MYS.pdf I am using the following class libraries. Loyc libs come from http://core.loyc.net/ using System; using System.Collections.Generic; using System.Linq; using System.Device.Location; using Loyc.Collections; using Loyc.Geometry; using Loyc; Here is the basic class public class Hulls { private static List<Point<double>> KNearestNeighbors(List<Point<double>> points, Point<double> currentPoint, int k, out int kk) { kk = Math.Min(k, points.Count - 1); var