[][src]Struct dot_canvas::Arc

pub struct Arc {
    pub x1: f32,
    pub y1: f32,
    pub x2: f32,
    pub y2: f32,
    pub radius: f32,
    pub sweep_flag: bool,
}

Fields

x1: f32y1: f32x2: f32y2: f32radius: f32sweep_flag: bool

Implementations

impl Arc[src]

pub fn new(
    x1: f32,
    y1: f32,
    x2: f32,
    y2: f32,
    radius: f32,
    sweep_flag: bool
) -> Self
[src]

pub fn center(&self) -> (f32, f32)[src]

calculate the center of this arc given start point, end point, radius and sweep direction

Trait Implementations

impl<'a> Shape<'a> for Arc[src]

Auto Trait Implementations

impl RefUnwindSafe for Arc

impl Send for Arc

impl Sync for Arc

impl Unpin for Arc

impl UnwindSafe for Arc

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.