pub struct Arc {
pub center: Point,
pub radii: Vec2,
pub start_angle: f64,
pub sweep_angle: f64,
pub x_rotation: f64,
}
Expand description
A single elliptical arc segment.
Fields§
§center: Point
The arc’s centre point.
radii: Vec2
The arc’s radii, where the vector’s x-component is the radius in the
positive x direction after applying x_rotation
.
start_angle: f64
The start angle in radians.
sweep_angle: f64
The angle between the start and end of the arc, in radians.
x_rotation: f64
How much the arc is rotated, in radians.
Implementations§
source§impl Arc
impl Arc
sourcepub fn new(
center: impl Into<Point>,
radii: impl Into<Vec2>,
start_angle: f64,
sweep_angle: f64,
x_rotation: f64,
) -> Self
pub fn new( center: impl Into<Point>, radii: impl Into<Vec2>, start_angle: f64, sweep_angle: f64, x_rotation: f64, ) -> Self
Create a new Arc
.
sourcepub fn reversed(&self) -> Arc
pub fn reversed(&self) -> Arc
Returns a copy of this Arc
in the opposite direction.
The new Arc
will sweep towards the original Arc
s
start angle.
sourcepub fn append_iter(&self, tolerance: f64) -> ArcAppendIter
pub fn append_iter(&self, tolerance: f64) -> ArcAppendIter
Create an iterator generating Bezier path elements.
The generated elements can be appended to an existing bezier path.
Trait Implementations§
source§impl Shape for Arc
impl Shape for Arc
source§fn perimeter(&self, accuracy: f64) -> f64
fn perimeter(&self, accuracy: f64) -> f64
The perimeter of the arc.
For now we just approximate by using the bezier curve representation.
source§fn winding(&self, pt: Point) -> i32
fn winding(&self, pt: Point) -> i32
Note: shape isn’t closed, so a point’s winding number is not well defined.
source§type PathElementsIter<'iter> = Chain<Once<PathEl>, ArcAppendIter>
type PathElementsIter<'iter> = Chain<Once<PathEl>, ArcAppendIter>
The iterator returned by the
path_elements
method.source§fn path_elements(&self, tolerance: f64) -> Self::PathElementsIter<'_>
fn path_elements(&self, tolerance: f64) -> Self::PathElementsIter<'_>
source§fn bounding_box(&self) -> Rect
fn bounding_box(&self) -> Rect
The smallest rectangle that encloses the shape.
source§fn into_path(self, tolerance: f64) -> BezPathwhere
Self: Sized,
fn into_path(self, tolerance: f64) -> BezPathwhere
Self: Sized,
Convert into a Bézier path. Read more
source§fn path_segments(&self, tolerance: f64) -> Segments<Self::PathElementsIter<'_>> ⓘ
fn path_segments(&self, tolerance: f64) -> Segments<Self::PathElementsIter<'_>> ⓘ
source§fn as_rounded_rect(&self) -> Option<RoundedRect>
fn as_rounded_rect(&self) -> Option<RoundedRect>
If the shape is a rounded rectangle, make it available.
impl Copy for Arc
impl StructuralPartialEq for Arc
Auto Trait Implementations§
impl Freeze for Arc
impl RefUnwindSafe for Arc
impl Send for Arc
impl Sync for Arc
impl Unpin for Arc
impl UnwindSafe for Arc
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)