Beispiel #1
0
 /// <summary>
 /// Checks if the given point is connected to the rest of the network. Use this to detect points on routing islands.
 /// </summary>
 public static bool CheckConnectivity(this RouterBase router, Profile profile, RouterPoint point)
 {
     return(router.CheckConnectivity(profile, point, DefaultConnectivityRadius));
 }