예제 #1
0
 public static FindPathProcess <T> FindPath <T>(this iExplorer <T> explorer, out FindPathProcess <T> findPathProcess, FindPathOptions options, T start, params T[] goal)
 {
     findPathProcess = explorer.FindPath(options, start, goal);
     return(findPathProcess);
 }
예제 #2
0
 //////////////////////////////////////////////////////////////////////////
 public static FindPathProcess <T> FindPath <T>(this iExplorer <T> explorer, T start, params T[] goal)
 {
     return(explorer.FindPath(FindPathOptions.c_Default, start, goal));
 }