pub struct FlexiTile {
pub position: Vec2,
pub z_order: i32,
pub glyph: u16,
pub fg: RGBA,
pub bg: RGBA,
pub rotation: f32,
pub scale: Vec2,
}Expand description
Internal storage structure for sparse tiles.
Fields§
§position: Vec2§z_order: i32§glyph: u16§fg: RGBA§bg: RGBA§rotation: f32§scale: Vec2Auto Trait Implementations§
impl Freeze for FlexiTile
impl RefUnwindSafe for FlexiTile
impl Send for FlexiTile
impl Sync for FlexiTile
impl Unpin for FlexiTile
impl UnwindSafe for FlexiTile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more