[][src]Struct arcs::primitives::Arc

pub struct Arc { /* fields omitted */ }

Methods

impl Arc[src]

pub fn from_centre_radius(
    centre: Vector,
    radius: f64,
    start_angle: f64,
    sweep_angle: f64
) -> Self
[src]

pub fn from_three_points(
    start: Vector,
    middle: Vector,
    end: Vector
) -> Option<Self>
[src]

pub const fn centre(self) -> Vector[src]

pub const fn radius(self) -> f64[src]

pub const fn start_angle(self) -> f64[src]

pub const fn sweep_angle(self) -> f64[src]

pub fn end_angle(self) -> f64[src]

pub fn is_anticlockwise(self) -> bool[src]

pub fn is_clockwise(self) -> bool[src]

pub fn start(self) -> Vector[src]

pub fn end(self) -> Vector[src]

pub fn point_at(self, angle: f64) -> Vector[src]

pub fn contains_angle(self, angle: f64) -> bool[src]

pub fn is_minor_arc(&self) -> bool[src]

pub fn is_major_arc(&self) -> bool[src]

Trait Implementations

impl Approximate for Arc[src]

type Iter = ApproximatedArc

impl Bounded for Arc[src]

impl Clone for Arc[src]

impl Copy for Arc[src]

impl Debug for Arc[src]

impl Length for Arc[src]

fn length(&self) -> f64[src]

Calculates the length of an Arc.

let radius = 50.0;
let arc = Arc::from_centre_radius(Vector::zero(), radius, 0.0, 2.0 * PI);

assert_eq!(arc.length(), 2.0 * radius * PI);

impl PartialEq<Arc> for Arc[src]

impl Scale for Arc[src]

impl StructuralPartialEq for Arc[src]

impl Translate 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> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> RoundFrom<T> for T[src]

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.