[−]Struct piet_common::kurbo::CircleSegment
A segment of a circle.
If inner_radius > 0, then the shape will be a doughnut segment.
Fields
center: PointThe center.
outer_radius: f64The outer radius.
inner_radius: f64The inner radius.
start_angle: f64The angle to start drawing the segment (in radians).
sweep_angle: f64The arc length of the segment (in radians).
Implementations
impl CircleSegment
pub fn new(
center: impl Into<Point>,
outer_radius: f64,
inner_radius: f64,
start_angle: f64,
sweep_angle: f64
) -> CircleSegment
center: impl Into<Point>,
outer_radius: f64,
inner_radius: f64,
start_angle: f64,
sweep_angle: f64
) -> CircleSegment
Create a CircleSegment out of its constituent parts.
Trait Implementations
impl Add<Vec2> for CircleSegment
type Output = CircleSegment
The resulting type after applying the + operator.
pub fn add(self, v: Vec2) -> CircleSegment
impl Shape for CircleSegment
type PathElementsIter = Chain<Chain<Chain<Chain<Once<PathEl>, Once<PathEl>>, ArcAppendIter>, Once<PathEl>>, ArcAppendIter>
The iterator returned by the path_elements method. Read more
pub fn path_elements(
&self,
tolerance: f64
) -> Chain<Chain<Chain<Chain<Once<PathEl>, Once<PathEl>>, ArcAppendIter>, Once<PathEl>>, ArcAppendIter>
&self,
tolerance: f64
) -> Chain<Chain<Chain<Chain<Once<PathEl>, Once<PathEl>>, ArcAppendIter>, Once<PathEl>>, ArcAppendIter>
pub fn area(&self) -> f64
pub fn perimeter(&self, _accuracy: f64) -> f64
pub fn winding(&self, pt: Point) -> i32
pub fn bounding_box(&self) -> Rect
fn to_path(&self, tolerance: f64) -> BezPath
fn into_path(self, tolerance: f64) -> BezPath
fn path_segments(&self, tolerance: f64) -> Segments<Self::PathElementsIter>ⓘ
fn contains(&self, pt: Point) -> bool
fn as_line(&self) -> Option<Line>
fn as_rect(&self) -> Option<Rect>
fn as_rounded_rect(&self) -> Option<RoundedRect>
fn as_circle(&self) -> Option<Circle>
fn as_path_slice(&self) -> Option<&[PathEl]>
impl Sub<Vec2> for CircleSegment
type Output = CircleSegment
The resulting type after applying the - operator.
pub fn sub(self, v: Vec2) -> CircleSegment
Auto Trait Implementations
impl RefUnwindSafe for CircleSegment
impl Send for CircleSegment
impl Sync for CircleSegment
impl Unpin for CircleSegment
impl UnwindSafe for CircleSegment
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> RoundFrom<T> for T[src]
pub fn round_from(x: T) -> T[src]
impl<T, U> RoundInto<U> for T where
U: RoundFrom<T>, [src]
U: RoundFrom<T>,
pub fn round_into(self) -> U[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,