Trait ux::AdvancedShapesExt[][src]

pub trait AdvancedShapesExt {
    pub fn round_rect(
        &self,
        x: f64,
        y: f64,
        width: f64,
        height: f64,
        radius: f64
    );
pub fn polygon(&self, x: f64, y: f64, radius: f64, n: usize);
pub fn star(&self, x: f64, y: f64, points: usize, outer: f64, inner: f64); }

Required methods

pub fn round_rect(&self, x: f64, y: f64, width: f64, height: f64, radius: f64)[src]

pub fn polygon(&self, x: f64, y: f64, radius: f64, n: usize)[src]

pub fn star(&self, x: f64, y: f64, points: usize, outer: f64, inner: f64)[src]

Loading content...

Implementors

impl<O> AdvancedShapesExt for O where
    O: CanvasContext
[src]

Loading content...