net.paulhertz.*
-
"A PixelMapGen that loads data from an external pixelMap, such as might be saved in a JSON file."
-
"DiagonalZigzagGen generates a diagonal zigzag map starting at (0,0). Moves first to (0,1) then proceeeds diagonally from edge to edge. Any width and height greater than 0 are valid for the constructor DiagonalZigzagGen(int width, int height)."
-
"HilbertGen generates a Hilbert curve over a square bitmap starting at (0,0) and ending at (width-1, 0). Width and height must be equal powers of 2. You can also call HilbertGen(int depth) and width and height will equal Math.pow(2, depth). "
-
"MooreGen generates a Moore curve over a square bitmap starting at (width/2 - 1, 0) and ending at (width/2, 0). Width and height must be equal powers of 2. You can also call MooreGen(int depth) and width and height will equal Math.pow(2, depth). "
-
"A PixelMapGen that creates a continuous signal over multiple PixelMapGens."
-
-
"Declare the description variable in your class and describe your PixelMapGen."
-
public static final boolean
true