Uses of Class
squidpony.squidmath.AStarSearch.SearchType
Package | Description |
---|---|
squidpony.squidmath |
A very broad package containing random number generators, geometry tools, data structures, and noise functions.
|
-
Uses of AStarSearch.SearchType in squidpony.squidmath
Fields in squidpony.squidmath declared as AStarSearch.SearchType Modifier and Type Field Description protected AStarSearch.SearchType
AStarSearch. type
Methods in squidpony.squidmath that return AStarSearch.SearchType Modifier and Type Method Description static AStarSearch.SearchType
AStarSearch.SearchType. valueOf(String name)
Returns the enum constant of this type with the specified name.static AStarSearch.SearchType[]
AStarSearch.SearchType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in squidpony.squidmath with parameters of type AStarSearch.SearchType Modifier and Type Method Description AStarSearch
AStarSearch. reinitialize(char[][] map, AStarSearch.SearchType type)
Resets this pathing object to use a different map and optionally a different SearchType.AStarSearch
AStarSearch. reinitialize(double[][] map, AStarSearch.SearchType type)
Resets this pathing object to use a different map and optionally a different SearchType.Constructors in squidpony.squidmath with parameters of type AStarSearch.SearchType Constructor Description AStarSearch(char[][] map, AStarSearch.SearchType type)
Builds a pathing object to run searches on.AStarSearch(double[][] map, AStarSearch.SearchType type)
Builds a pathing object to run searches on.