[][src]Struct geng::draw_2d::Draw2D

pub struct Draw2D { /* fields omitted */ }

Implementations

impl Draw2D[src]

pub fn draw<V>(
    &self,
    framebuffer: &mut Framebuffer<'_>,
    vertices: &[V],
    color: Color<f32>,
    mode: DrawMode
) where
    V: Copy + Into<Vertex>, 
[src]

pub fn quad(
    &self,
    framebuffer: &mut Framebuffer<'_>,
    position: AABB<f32>,
    color: Color<f32>
)
[src]

pub fn textured<V>(
    &self,
    framebuffer: &mut Framebuffer<'_>,
    vertices: &[V],
    texture: &Texture,
    color: Color<f32>,
    mode: DrawMode
) where
    V: Copy + Into<TexturedVertex>, 
[src]

pub fn textured_quad(
    &self,
    framebuffer: &mut Framebuffer<'_>,
    position: AABB<f32>,
    texture: &Texture,
    color: Color<f32>
)
[src]

pub fn ellipse(
    &self,
    framebuffer: &mut Framebuffer<'_>,
    position: Vec2<f32>,
    radius: Vec2<f32>,
    color: Color<f32>
)
[src]

pub fn circle(
    &self,
    framebuffer: &mut Framebuffer<'_>,
    position: Vec2<f32>,
    radius: f32,
    color: Color<f32>
)
[src]

Auto Trait Implementations

impl !RefUnwindSafe for Draw2D

impl !Send for Draw2D

impl !Sync for Draw2D

impl Unpin for Draw2D

impl !UnwindSafe for Draw2D

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

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,