[][src]Struct oxygengine_composite_renderer::component::TileCell

pub struct TileCell {
    pub col: usize,
    pub row: usize,
    pub flip_x: bool,
    pub flip_y: bool,
    pub rotate: TileRotate,
    pub visible: bool,
}

Fields

col: usizerow: usizeflip_x: boolflip_y: boolrotate: TileRotatevisible: bool

Methods

impl TileCell[src]

pub fn new(col: usize, row: usize) -> Self[src]

pub fn flip(self, x: bool, y: bool) -> Self[src]

pub fn rotate(self, value: TileRotate) -> Self[src]

pub fn visible(self, value: bool) -> Self[src]

pub fn matrix(
    &self,
    col: usize,
    row: usize,
    width: Scalar,
    height: Scalar
) -> Mat2d
[src]

Trait Implementations

impl Clone for TileCell[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for TileCell[src]

impl From<(usize, usize)> for TileCell[src]

impl From<(usize, usize, bool)> for TileCell[src]

impl From<(usize, usize, bool, bool)> for TileCell[src]

impl From<(usize, usize, bool, bool, bool)> for TileCell[src]

impl From<(usize, usize, TileRotate)> for TileCell[src]

impl From<(usize, usize, TileRotate, bool)> for TileCell[src]

impl From<(usize, usize, bool, bool, TileRotate)> for TileCell[src]

impl From<(usize, usize, bool, bool, TileRotate, bool)> for TileCell[src]

impl Copy for TileCell[src]

impl Debug for TileCell[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Resource for T where
    T: Any + Send + Sync

impl<T> TryDefault for T where
    T: Default

fn unwrap_default() -> Self

Calls try_default and panics on an error case.

impl<T> Event for T where
    T: Send + Sync + 'static, 

impl<T> Erased for T

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.