Struct graphics::grid::Grid
[−]
[src]
pub struct Grid {
pub cols: u32,
pub rows: u32,
pub units: Scalar,
}Represents a flat grid with square cells.
Fields
cols: u32
Number of columns.
rows: u32
Number of rows.
units: Scalar
The width and height of each grid cell.
Methods
impl Grid[src]
pub fn draw<G>(
&self,
line: &Line,
draw_state: &DrawState,
transform: Matrix2d,
g: &mut G
) where
G: Graphics, [src]
&self,
line: &Line,
draw_state: &DrawState,
transform: Matrix2d,
g: &mut G
) where
G: Graphics,
Draws the grid.
ⓘImportant traits for GridCellspub fn cells(&self) -> GridCells[src]
ⓘImportant traits for GridCells
Get a GridIterator for the grid
pub fn cell_position(&self, cell: (u32, u32)) -> Vec2d[src]
Get on-screen position of a grid cell
pub fn x_pos(&self, cell: (u32, u32)) -> Scalar[src]
Get on-screen x position of a grid cell
pub fn y_pos(&self, cell: (u32, u32)) -> Scalar[src]
Get on-screen y position of a grid cell
Trait Implementations
impl Debug for Grid[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more