HPASharp.Cluster.ComputeInternalPaths C# (CSharp) Method

ComputeInternalPaths() public method

Computes the paths that lie inside the cluster, connecting the several entrances among them
public ComputeInternalPaths ( ) : void
return void
        public void ComputeInternalPaths()
        {
            foreach (var point1 in EntrancePoints)
            foreach (var point2 in EntrancePoints)
                ComputePathBetweenEntrances(point1, point2);
        }