[][src]Struct vga_figures::figures2d::Figures2D

pub struct Figures2D<T> { /* fields omitted */ }

Struct for storage mode vga

Implementations

impl<T: GraphicsWriter<Color16>> Figures2D<T>[src]

pub const fn new(mode: T) -> Figures2D<T>[src]

Creates a new Figures2D.

pub fn pixel(&self, x: isize, y: isize, color: Color16)[src]

Draw pixel

pub fn line(&self, x1: isize, y1: isize, x2: isize, y2: isize, color: Color16)[src]

Draw line

pub fn rectangle(
    &self,
    x1: isize,
    y1: isize,
    x2: isize,
    y2: isize,
    color: Color16
)
[src]

Draw rectangle

pub fn ellipse(&self, x: isize, y: isize, a: isize, b: isize, color: Color16)[src]

Draw ellipse

pub fn polygon(&self, arr: &[isize], color: Color16)[src]

Draw polygon

pub fn text(&self, x: usize, y: usize, s: &str, color: Color16)[src]

Draw text

Auto Trait Implementations

impl<T> Send for Figures2D<T> where
    T: Send

impl<T> Sync for Figures2D<T> where
    T: Sync

impl<T> Unpin for Figures2D<T> where
    T: Unpin

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, 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.