Uses of Class
squidpony.squidmath.GWTRNG
Package | Description |
---|---|
squidpony |
Utilities that don't fit elsewhere in SquidLib; mostly text manipulation, compression, and helper code.
|
squidpony.squidgrid.mapping |
Tools specifically for generating maps and placing content in them, usually working with 2D char arrays.
|
squidpony.squidmath |
A very broad package containing random number generators, geometry tools, data structures, and noise functions.
|
-
Uses of GWTRNG in squidpony
-
Uses of GWTRNG in squidpony.squidgrid.mapping
Fields in squidpony.squidgrid.mapping declared as GWTRNG Modifier and Type Field Description GWTRNG
WorldMapGenerator. rng
-
Uses of GWTRNG in squidpony.squidmath
Fields in squidpony.squidmath declared as GWTRNG Modifier and Type Field Description GWTRNG
ProbabilityTable. rng
Methods in squidpony.squidmath that return GWTRNG Modifier and Type Method Description GWTRNG
GWTRNG. copy()
Creates a copy of this GWTRNG; it will generate the same random numbers, given the same calls in order, as this GWTRNG at the point copy() is called.GWTRNG
ProbabilityTable. getRandom()
Gets the random number generator (a RandomnessSource) this uses.Methods in squidpony.squidmath with parameters of type GWTRNG Modifier and Type Method Description void
ProbabilityTable. setRandom(GWTRNG random)
Sets the current random number generator to the given GWTRNG.