- name - Variable in class squidpony.MonsterGen.Chimera
-
- name - Variable in class squidpony.squidai.Technique
-
- nearestInfluences(short[][], Coord) - Method in class squidpony.squidai.ZOI
-
Given the zones resulting from this class' calculate method and a Coord to check, finds the indices of all
influencing groups in zones that have the Coord in their area, and returns all such indices as an int array.
- nearestInfluences(Coord) - Method in class squidpony.squidai.ZOI
-
This can be given a Coord to check in the results of the latest calculate() call.
- negatePacked(short[]) - Static method in class squidpony.squidmath.CoordPacker
-
Given one packed short array, this produces a packed short array that is the exact opposite of the one passed in,
that is, every "on" cell becomes "off" and every "off" cell becomes "on", including cells that were "off" because
they were beyond the boundaries of the original 2D array passed to pack() or a similar method.
- NeuralParticle - Class in squidpony.squidmath
-
Creates a field of particles that tend to form a neuron image type
distribution.
- NeuralParticle(int, int, int, RNG) - Constructor for class squidpony.squidmath.NeuralParticle
-
- next() - Method in class squidpony.squidgrid.iterator.SquidIterators.AroundCounterClockWise
-
- next() - Method in class squidpony.squidgrid.iterator.SquidIterators.BottomLeftToTopRight
-
- next() - Method in class squidpony.squidgrid.iterator.SquidIterators.CenteredSquare
-
- next() - Method in class squidpony.squidgrid.iterator.SquidIterators.RectangleFromBottomLeftToTopRight
-
- next() - Method in class squidpony.squidgrid.iterator.SquidIterators.VerticalUp
-
- next(int) - Method in class squidpony.squidmath.ChaosRNG
-
- next(int) - Method in class squidpony.squidmath.DeckRNG
-
- next(int) - Method in class squidpony.squidmath.DharmaRNG
-
- next(int) - Method in class squidpony.squidmath.EditRNG
-
- next(int) - Method in class squidpony.squidmath.LightRNG
-
- next(int) - Method in class squidpony.squidmath.LongPeriodRNG
-
- next(int) - Method in class squidpony.squidmath.MersenneTwister
-
- next(int) - Method in class squidpony.squidmath.PermutedRNG
-
- next(int) - Method in interface squidpony.squidmath.RandomnessSource
-
Using this method, any algorithm that might use the built-in Java Random
can interface with this randomness source.
- next() - Method in class squidpony.squidmath.RegionMap.Entries
-
Note the same entry instance is returned each time this method is called.
- next() - Method in class squidpony.squidmath.RegionMap.Keys
-
- next() - Method in class squidpony.squidmath.RegionMap.Values
-
- next(int) - Method in class squidpony.squidmath.RNG.CustomRandom
-
Generates the next pseudorandom number.
- next(int) - Method in class squidpony.squidmath.RNG
-
Get up to 32 bits (inclusive) of random state from the RandomnessSource.
- next() - Method in class squidpony.squidmath.ShortSet.ShortSetIterator
-
- next(int) - Method in class squidpony.squidmath.SobolQRNG
-
- next(int) - Method in class squidpony.squidmath.XoRoRNG
-
- next(int) - Method in class squidpony.squidmath.XorRNG
-
- next0() - Method in class squidpony.squidgrid.iterator.SquidIterators.RectangleFromBottomLeftToTopRight
-
- nextBoolean() - Method in class squidpony.squidmath.DeckRNG
-
- nextBoolean() - Method in class squidpony.squidmath.DharmaRNG
-
- nextBoolean() - Method in class squidpony.squidmath.EditRNG
-
- nextBoolean() - Method in class squidpony.squidmath.LightRNG
-
Gets a random value, true or false.
- nextBoolean() - Method in class squidpony.squidmath.PermutedRNG
-
Gets a random value, true or false.
- nextBoolean() - Method in class squidpony.squidmath.RNG
-
Get a random bit of state, interpreted as true or false with approximately equal likelihood.
- nextBoolean() - Method in class squidpony.squidmath.XoRoRNG
-
- nextBoolean() - Method in class squidpony.squidmath.XorRNG
-
- nextBytes(byte[]) - Method in class squidpony.squidmath.LightRNG
-
Given a byte array as a parameter, this will fill the array with random bytes (modifying it
in-place).
- nextBytes(byte[]) - Method in class squidpony.squidmath.PermutedRNG
-
Given a byte array as a parameter, this will fill the array with random bytes (modifying it
in-place).
- nextBytes(byte[]) - Method in class squidpony.squidmath.XoRoRNG
-
- nextBytes(byte[]) - Method in class squidpony.squidmath.XorRNG
-
- nextCombinationAsArray(T[]) - Method in class squidpony.squidmath.CombinationGenerator
-
Generate the next combination and return an array containing
the appropriate elements.
- nextCombinationAsList() - Method in class squidpony.squidmath.CombinationGenerator
-
Generate the next combination and return a list containing the
appropriate elements.
- nextCombinationAsList(List<T>) - Method in class squidpony.squidmath.CombinationGenerator
-
Generate the next combination and return a list containing
the appropriate elements.
- nextDouble() - Method in class squidpony.squidmath.DeckRNG
-
Generate a random double, altering the result if recently generated results have been leaning
away from this class' fairness value.
- nextDouble(double) - Method in class squidpony.squidmath.DeckRNG
-
This returns a random double between 0.0 (inclusive) and max (exclusive).
- nextDouble() - Method in class squidpony.squidmath.DharmaRNG
-
Generate a random double, altering the result if recently generated results have been leaning
away from this class' fairness value.
- nextDouble(double) - Method in class squidpony.squidmath.DharmaRNG
-
This returns a random double between 0.0 (inclusive) and max (exclusive).
- nextDouble() - Method in class squidpony.squidmath.EditRNG
-
Generate a random double, altered to try to match the expected average and centrality.
- nextDouble(double) - Method in class squidpony.squidmath.EditRNG
-
This returns a random double between 0.0 (inclusive) and max (exclusive).
- nextDouble() - Method in class squidpony.squidmath.LightRNG
-
Gets a uniform random double in the range [0.0,1.0)
- nextDouble(double) - Method in class squidpony.squidmath.LightRNG
-
Gets a uniform random double in the range [0.0,outer) given a positive parameter outer.
- nextDouble() - Method in class squidpony.squidmath.PermutedRNG
-
Gets a uniform random double in the range [0.0,1.0)
Calls nextLong() exactly one time.
- nextDouble(double) - Method in class squidpony.squidmath.PermutedRNG
-
Gets a uniform random double in the range [0.0,outer) given a positive parameter outer.
- nextDouble() - Method in class squidpony.squidmath.RNG
-
This returns a maximum of 0.9999999999999999 because that is the largest
Double value that is less than 1.0
- nextDouble(double) - Method in class squidpony.squidmath.RNG
-
This returns a random double between 0.0 (inclusive) and max (exclusive).
- nextDouble() - Method in class squidpony.squidmath.XoRoRNG
-
- nextDouble() - Method in class squidpony.squidmath.XorRNG
-
- nextFloat() - Method in class squidpony.squidmath.DeckRNG
-
- nextFloat() - Method in class squidpony.squidmath.DharmaRNG
-
- nextFloat() - Method in class squidpony.squidmath.EditRNG
-
- nextFloat() - Method in class squidpony.squidmath.LightRNG
-
Gets a uniform random float in the range [0.0,1.0)
- nextFloat() - Method in class squidpony.squidmath.PermutedRNG
-
Gets a uniform random float in the range [0.0,1.0)
Calls nextLong() exactly one time.
- nextFloat() - Method in class squidpony.squidmath.RNG
-
This returns a maximum of 0.99999994 because that is the largest Float
value that is less than 1.0f
- nextFloat() - Method in class squidpony.squidmath.XoRoRNG
-
- nextFloat() - Method in class squidpony.squidmath.XorRNG
-
- nextGaussian() - Method in class squidpony.squidmath.DeckRNG
-
- nextGaussian() - Method in class squidpony.squidmath.DharmaRNG
-
- nextGaussian() - Method in class squidpony.squidmath.EditRNG
-
- nextGaussian() - Method in class squidpony.squidmath.RNG
-
- nextInt(int) - Method in class squidpony.squidmath.DeckRNG
-
Returns a random integer below the given bound, or 0 if the bound is 0 or
negative.
- nextInt() - Method in class squidpony.squidmath.DeckRNG
-
Returns a random integer, which may be positive or negative.
- nextInt(int) - Method in class squidpony.squidmath.DharmaRNG
-
Returns a random integer below the given bound, or 0 if the bound is 0 or
negative.
- nextInt() - Method in class squidpony.squidmath.DharmaRNG
-
Returns a random integer, which may be positive or negative.
- nextInt(int) - Method in class squidpony.squidmath.EditRNG
-
Returns a random integer below the given bound, or 0 if the bound is 0 or
negative.
- nextInt() - Method in class squidpony.squidmath.EditRNG
-
Returns a random integer, which may be positive or negative.
- nextInt() - Method in class squidpony.squidmath.LightRNG
-
Can return any int, positive or negative, of any size permissible in a 32-bit signed integer.
- nextInt(int) - Method in class squidpony.squidmath.LightRNG
-
Exclusive on the upper bound.
- nextInt(int, int) - Method in class squidpony.squidmath.LightRNG
-
Inclusive lower, exclusive upper.
- nextInt() - Method in class squidpony.squidmath.PermutedRNG
-
Can return any int, positive or negative, of any size permissible in a 32-bit signed integer.
- nextInt(int) - Method in class squidpony.squidmath.PermutedRNG
-
Exclusive on the upper bound n.
- nextInt(int, int) - Method in class squidpony.squidmath.PermutedRNG
-
Inclusive lower, exclusive upper.
- nextInt(int) - Method in class squidpony.squidmath.RNG
-
Returns a random integer below the given bound, or 0 if the bound is 0 or
negative.
- nextInt() - Method in class squidpony.squidmath.RNG
-
Get a random integer between Integer.MIN_VALUE to Integer.MAX_VALUE (both inclusive).
- nextInt() - Method in class squidpony.squidmath.XoRoRNG
-
Can return any int, positive or negative, of any size permissible in a 32-bit signed integer.
- nextInt(int) - Method in class squidpony.squidmath.XoRoRNG
-
Exclusive on the upper bound.
- nextInt(int, int) - Method in class squidpony.squidmath.XoRoRNG
-
Inclusive lower, exclusive upper.
- nextInt() - Method in class squidpony.squidmath.XorRNG
-
- nextInt(int) - Method in class squidpony.squidmath.XorRNG
-
- nextIntVector() - Method in class squidpony.squidmath.SobolQRNG
-
Generate a random vector.
- nextIntVector(int) - Method in class squidpony.squidmath.SobolQRNG
-
Generate a random vector.
- nextLong() - Method in class squidpony.squidmath.ChaosRNG
-
Can return any long, positive or negative, of any size permissible in a 64-bit signed integer.
- nextLong() - Method in class squidpony.squidmath.DeckRNG
-
Returns a random long, which may be positive or negative.
- nextLong(long) - Method in class squidpony.squidmath.DeckRNG
-
Returns a random long below the given bound, or 0 if the bound is 0 or
negative.
- nextLong() - Method in class squidpony.squidmath.DharmaRNG
-
Returns a random long, which may be positive or negative.
- nextLong(long) - Method in class squidpony.squidmath.DharmaRNG
-
Returns a random long below the given bound, or 0 if the bound is 0 or
negative.
- nextLong() - Method in class squidpony.squidmath.EditRNG
-
Returns a random long, which may be positive or negative.
- nextLong(long) - Method in class squidpony.squidmath.EditRNG
-
Returns a random long below the given bound, or 0 if the bound is 0 or
negative.
- nextLong() - Method in class squidpony.squidmath.LightRNG
-
Can return any long, positive or negative, of any size permissible in a 64-bit signed integer.
- nextLong(long) - Method in class squidpony.squidmath.LightRNG
-
Exclusive on the upper bound.
- nextLong(long, long) - Method in class squidpony.squidmath.LightRNG
-
Inclusive lower, exclusive upper.
- nextLong() - Method in class squidpony.squidmath.LongPeriodRNG
-
Can return any long, positive or negative, of any size permissible in a 64-bit signed integer.
- nextLong() - Method in class squidpony.squidmath.MersenneTwister
-
- nextLong() - Method in class squidpony.squidmath.PermutedRNG
-
Can return any long, positive or negative, of any size permissible in a 64-bit signed integer.
- nextLong(long) - Method in class squidpony.squidmath.PermutedRNG
-
Exclusive on the upper bound n.
- nextLong(long, long) - Method in class squidpony.squidmath.PermutedRNG
-
Exclusive on the upper bound n.
- nextLong() - Method in interface squidpony.squidmath.RandomnessSource
-
Using this method, any algorithm that needs to efficiently generate more
than 32 bits of random data can interface with this randomness source.
- nextLong() - Method in class squidpony.squidmath.RNG
-
Get a random long between Long.MIN_VALUE to Long.MAX_VALUE (both inclusive).
- nextLong(long) - Method in class squidpony.squidmath.RNG
-
Returns a random long below the given bound, or 0 if the bound is 0 or
negative.
- nextLong() - Method in class squidpony.squidmath.SobolQRNG
-
Using this method, any algorithm that needs to efficiently generate more
than 32 bits of random data can interface with this randomness source.
- nextLong() - Method in class squidpony.squidmath.XoRoRNG
-
- nextLong(long) - Method in class squidpony.squidmath.XoRoRNG
-
Exclusive on the upper bound.
- nextLong() - Method in class squidpony.squidmath.XorRNG
-
- nextLong(long) - Method in class squidpony.squidmath.XorRNG
-
- nextLongVector() - Method in class squidpony.squidmath.SobolQRNG
-
Generate a random vector.
- nextLongVector(long) - Method in class squidpony.squidmath.SobolQRNG
-
Generate a random vector.
- nextNextGaussian - Variable in class squidpony.squidmath.RNG
-
- nextPermutationAsArray(T[]) - Method in class squidpony.squidmath.PermutationGenerator
-
Generate the next permutation and return an array containing
the elements in the appropriate order.
- nextPermutationAsList() - Method in class squidpony.squidmath.PermutationGenerator
-
Generate the next permutation and return a list containing
the elements in the appropriate order.
- nextPermutationAsList(List<T>) - Method in class squidpony.squidmath.PermutationGenerator
-
Generate the next permutation and return a list containing
the elements in the appropriate order.
- nextVector() - Method in class squidpony.squidmath.SobolQRNG
-
Generate a random vector.
- nextVector(double) - Method in class squidpony.squidmath.SobolQRNG
-
Generate a random vector.
- NO_DOUBLES - Static variable in class squidpony.FakeLanguageGen.Modifier
-
For a language that never repeats the same letter twice in a row.
- noise(double, double) - Static method in class squidpony.squidmath.PerlinNoise
-
2D simplex noise.
- noise(double, double, double) - Static method in class squidpony.squidmath.PerlinNoise
-
3D simplex noise.
- noise(double, double, double, double) - Static method in class squidpony.squidmath.PerlinNoise
-
4D simplex noise.
- noiseMax - Variable in class squidpony.squidgrid.mapping.OrganicMapGenerator
-
- noiseMin - Variable in class squidpony.squidgrid.mapping.OrganicMapGenerator
-
- nth(short[], int) - Static method in class squidpony.squidmath.CoordPacker
-
Gets the nth position that is "on" in the given packed array, without unpacking it, and returns it as a Coord.
- num_color_0 - Variable in class squidpony.squidgrid.mapping.styled.Config
-
- num_color_1 - Variable in class squidpony.squidgrid.mapping.styled.Config
-
- num_color_2 - Variable in class squidpony.squidgrid.mapping.styled.Config
-
- num_color_3 - Variable in class squidpony.squidgrid.mapping.styled.Config
-
- num_color_4 - Variable in class squidpony.squidgrid.mapping.styled.Config
-
- num_color_5 - Variable in class squidpony.squidgrid.mapping.styled.Config
-
- NUM_THREADS - Variable in class squidpony.squidgrid.FOVCache
-
- num_x_variants - Variable in class squidpony.squidgrid.mapping.styled.Config
-
- num_y_variants - Variable in class squidpony.squidgrid.mapping.styled.Config
-