Struct graphics_rs::canvas::Canvas
source · pub struct Canvas { /* private fields */ }
Implementations§
source§impl Canvas
impl Canvas
pub fn clamp_row(&self, row: f64) -> f64
pub fn clamp_col(&self, col: f64) -> f64
pub fn width(&self) -> usize
pub fn height(&self) -> usize
pub fn color_at(&self, index: usize) -> Color
pub fn create(width: usize, height: usize, fill_color: Option<Color>) -> Self
pub fn change_color(&mut self, color: u32)
pub fn fill(&mut self)
pub fn save(&self, path: &str) -> Result<()>
pub fn fill_rect(&mut self, x: usize, y: usize, width: usize, height: usize)
pub fn fill_circle(&mut self, center_x: usize, center_y: usize, radius: usize)
pub fn draw_line(&mut self, x1: usize, y1: usize, x2: usize, y2: usize)
pub fn draw_triangle( &mut self, x1: usize, y1: usize, x2: usize, y2: usize, x3: usize, y3: usize )
Auto Trait Implementations§
impl Freeze for Canvas
impl RefUnwindSafe for Canvas
impl Send for Canvas
impl Sync for Canvas
impl Unpin for Canvas
impl UnwindSafe for Canvas
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.