[][src]Struct very_simple_2d_core::sprite::Texture

pub struct Texture { /* fields omitted */ }

Methods

impl Texture[src]

pub fn coord_to_index(&self, cell: Vec2<u32>) -> TexIndex[src]

Create a texture index from a coordinate in the tile set. The top left time maps to 0,0. The x component grows to the right. The y component grows downwards.

pub fn coord_to_indexp(&self, cellx: u32, celly: u32) -> TexIndex[src]

Create a texture index from a coordinate in the tile set, using primitives

pub fn new(file: &str, grid_dim: Vec2<u32>) -> ImageResult<Texture>[src]

Auto Trait Implementations

impl RefUnwindSafe for Texture

impl !Send for Texture

impl !Sync for Texture

impl Unpin for Texture

impl UnwindSafe for Texture

Blanket Implementations

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

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

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

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

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

impl<T> SetParameter for T

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.