Uses of Class
squidpony.squidmath.LongPeriodRNG

Packages that use LongPeriodRNG 
Package Description
squidpony.squidmath
A very broad package containing random number generators, geometry tools, data structures, and noise functions.
  • Uses of LongPeriodRNG in squidpony.squidmath

    Methods in squidpony.squidmath that return LongPeriodRNG 
    Modifier and Type Method Description
    LongPeriodRNG LongPeriodRNG.copy()
    Produces a copy of this RandomnessSource that, if next() and/or nextLong() are called on this object and the copy, both will generate the same sequence of random numbers from the point copy() was called.
    static LongPeriodRNG[] LongPeriodRNG.createMany​(int count)
    Creates many LongPeriodRNG objects in an array, where each will generate a sequence of pow(2, 512) numbers that will not overlap with other sequences in the array.
    static LongPeriodRNG[] LongPeriodRNG.createMany​(int count, long seed)
    Creates many LongPeriodRNG objects in an array, where each will generate a sequence of pow(2, 512) numbers that will not overlap with other sequences in the array.
    static LongPeriodRNG[] LongPeriodRNG.createMany​(int count, long[] seed)
    Creates many LongPeriodRNG objects in an array, where each will generate a sequence of pow(2, 512) numbers that will not overlap with other sequences in the array.
    static LongPeriodRNG[] LongPeriodRNG.createMany​(int count, String seed)
    Creates many LongPeriodRNG objects in an array, where each will generate a sequence of pow(2, 512) numbers that will not overlap with other sequences in the array.
    Constructors in squidpony.squidmath with parameters of type LongPeriodRNG 
    Constructor Description
    LongPeriodRNG​(LongPeriodRNG other)