[][src]Struct ruckus::sys::Quad

pub struct Quad {
    pub verts: [Vertex2D; 4],
}

Fields

verts: [Vertex2D; 4]

Implementations

impl Quad[src]

pub const fn default_verts() -> [Vertex2D; 4][src]

pub fn new<T>(
    pos: Vec2,
    size: Vec2,
    rotation_degrees: f32,
    texture_rect: T
) -> Self where
    T: Into<Option<Rectui>>, 
[src]

pub fn with_xform<T>(xform: &Transform, texture_rect: T) -> Self where
    T: Into<Option<Rectui>>, 
[src]

pub fn with_verts(verts: &[Vertex2D]) -> Self[src]

pub fn flip_vertical_text_coords(&mut self, min: f32, max: f32)[src]

Trait Implementations

impl Default for Quad[src]

Auto Trait Implementations

impl RefUnwindSafe for Quad

impl Send for Quad

impl Sync for Quad

impl Unpin for Quad

impl UnwindSafe for Quad

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> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.