- initializeBeacon(boolean[][]) - Static method in class GameOfLife
-
Initializes the world to the Beacon pattern.
- initializeBoat(boolean[][]) - Static method in class GameOfLife
-
Initializes the world to the Boat pattern.
- initializeGlider(boolean[][]) - Static method in class GameOfLife
-
Initializes the world to the Glider pattern.
- initializeRandomWorld(boolean[][]) - Static method in class GameOfLife
-
Initialize the GameOfLife world with a random selection of cells alive.
- initializeRpentomino(boolean[][]) - Static method in class GameOfLife
-
Initializes the world to the R-pentomino pattern.
- isCellLivingInNextGeneration(int, boolean) - Static method in class GameOfLife
-
Whether a cell is living in the next generation of the game.
- isNeighborAlive(boolean[][], int, int) - Static method in class GameOfLife
-
Whether a specific neighbor is alive.