| Package | Description |
|---|---|
| net.returnvoid.graphics.grid |
A package with tools to create common grids.
|
| Modifier and Type | Method and Description |
|---|---|
static TableGrid |
GridMaker.createTable()
Creates a table grid (a grid that is defined by rows and columns).
|
static TableGrid |
GridMaker.createTable(float x,
float y,
float w,
float h,
int size)
Creates a table grid (a grid that is defined by rows and columns).
|
static TableGrid |
GridMaker.createTable(float x,
float y,
float w,
float h,
int columns,
int rows)
Creates a table grid (a grid that is defined by rows and columns).
|
static TableGrid |
GridMaker.createTable(float w,
float h,
int size)
Creates a table grid (a grid that is defined by rows and columns).
|
static TableGrid |
GridMaker.createTable(float w,
float h,
int columns,
int rows)
Creates a table grid (a grid that is defined by rows and columns).
|
TableGrid |
TableGrid.setCellHeight(float cellHeight)
Sets the height of the grid elements.
|
TableGrid |
TableGrid.setCellWidth(float cellWidth)
Sets the width of the grid elements.
|
TableGrid |
TableGrid.setColumns(java.lang.Integer columns)
Sets the number of columns for this grid.
|
TableGrid |
TableGrid.setDimension(float s)
Sets the width and height of this grid (width and height will have the
same value).
|
TableGrid |
TableGrid.setDimension(float w,
float h)
Sets the width and height of this grid.
|
TableGrid |
TableGrid.setHeight(float h)
Sets the height of this grid.
|
TableGrid |
TableGrid.setPadding()
Sets the horizontal and vertical padding.
|
TableGrid |
TableGrid.setPadding(float padding)
Sets the horizontal and vertical padding.
|
TableGrid |
TableGrid.setPaddingX()
Sets the horizontal padding.
|
TableGrid |
TableGrid.setPaddingX(float paddingX)
Sets the horizontal padding.
|
TableGrid |
TableGrid.setPaddingY()
Sets the vertical padding.
|
TableGrid |
TableGrid.setPaddingY(float paddingY)
Sets the vertical padding.
|
TableGrid |
TableGrid.setRows(java.lang.Integer rows)
Sets the number of rows for this grid.
|
TableGrid |
TableGrid.setSize(java.lang.Integer size)
Sets the number of elements for this grid.
|
TableGrid |
TableGrid.setWidth(float w)
Sets the width of this grid.
|
TableGrid |
TableGrid.setX(float x) |
TableGrid |
TableGrid.setY(float y) |