Struct graphics::grid::Grid [−][src]
Represents a flat grid with square cells.
Fields
cols: u32Number of columns.
rows: u32Number of rows.
units: ScalarThe 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,
pub fn borrow_mut(&mut self) -> &mut T[src]
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,