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

pub struct Arc<S> { /* fields omitted */ }

A circle segment.

Implementations

impl<S> Arc<S>[src]

pub fn from_centre_radius(
    centre: Point2D<f64, S>,
    radius: f64,
    start_angle: Angle<f64>,
    sweep_angle: Angle<f64>
) -> Arc<S>
[src]

Create an Arc based upon its centre and radius.

Examples

pub fn from_three_points(
    start: Point2D<f64, S>,
    middle: Point2D<f64, S>,
    end: Point2D<f64, S>
) -> Option<Arc<S>>
[src]

Try to find the Arc which will pass through three points.

Examples

You can use this constructor in the normal way.

use arcs_core::primitives::Arc;

let right = Point::new(10.0, 0.0);
let above = Point::new(0.0, 10.0);
let left = Point::new(-10.0, 0.0);

let got = Arc::from_three_points(right, above, left).unwrap();

assert_eq!(got.centre(), Point::zero());
assert_eq!(got.radius(), 10.0);
assert!(got.is_anticlockwise());

This will fail if the three points are Orientation::Collinear.

use arcs_core::primitives::Arc;

let start = Point::new(0.0, 0.0);
let middle = Point::new(10.0, 0.0);
let end = Point::new(20.0, 0.0);

let got = Arc::from_three_points(start, middle, end);

assert!(got.is_none());

pub const fn centre(self) -> Point2D<f64, S>[src]

The Arc's centre point.

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

The Arc's radius.

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

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

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

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

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

pub fn start(self) -> Point2D<f64, S>[src]

pub fn end(self) -> Point2D<f64, S>[src]

pub fn point_at(self, angle: Angle<f64>) -> Point2D<f64, S>[src]

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

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

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

Trait Implementations

impl<Space> Approximate<Space> for Arc<Space>[src]

type Iter = ApproximatedArc<Space>

An iterator over the approximated vertices.

impl<S> Bounded<S> for Arc<S>[src]

impl<S> Clone for Arc<S>[src]

impl<Space> ClosestPoint<Space> for Arc<Space>[src]

impl<S> Copy for Arc<S>[src]

impl<S> Debug for Arc<S> where
    S: Debug
[src]

impl<Space> Length for Arc<Space>[src]

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

Calculates the length of an Arc.

let radius = 50.0;
let arc = Arc::from_centre_radius(
    Point::zero(),
    radius,
    Angle::zero(),
    Angle::two_pi(),
);

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

impl<S> PartialEq<Arc<S>> for Arc<S> where
    S: PartialEq<S>, 
[src]

impl<Space> Scale for Arc<Space>[src]

impl<S> StructuralPartialEq for Arc<S>[src]

impl<Space> Translate<Space> for Arc<Space>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Arc<S> where
    S: RefUnwindSafe

impl<S> Send for Arc<S> where
    S: Send

impl<S> Sync for Arc<S> where
    S: Sync

impl<S> Unpin for Arc<S> where
    S: Unpin

impl<S> UnwindSafe for Arc<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

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, 
[src]

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<S> Scale for S where
    S: ScaleNonUniform
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<Space, A> Translate<Space> for A where
    A: AffineTransformable
[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.