Struct graphics::grid::Grid [−][src]
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.
Implementations
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.
pub fn cells(&self) -> GridCellsⓘ
[src][−]
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
Auto Trait Implementations
impl RefUnwindSafe for Grid
impl Send for Grid
impl Sync for Grid
impl Unpin for Grid
impl UnwindSafe for Grid
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,