Struct SvgArc
pub struct SvgArc<S> {
pub from: Point2D<S, UnknownUnit>,
pub to: Point2D<S, UnknownUnit>,
pub radii: Vector2D<S, UnknownUnit>,
pub x_rotation: Angle<S>,
pub flags: ArcFlags,
}
canvas
only.Expand description
An elliptic arc curve segment using the SVG’s end-point notation.
Fields§
§from: Point2D<S, UnknownUnit>
§to: Point2D<S, UnknownUnit>
§radii: Vector2D<S, UnknownUnit>
§x_rotation: Angle<S>
§flags: ArcFlags
Implementations§
§impl<S> SvgArc<S>where
S: Scalar,
impl<S> SvgArc<S>where
S: Scalar,
pub fn is_straight_line(&self) -> bool
pub fn is_straight_line(&self) -> bool
Per SVG spec, this arc should be rendered as a line_to segment.
Do not convert an SvgArc
into an arc
if this returns true.
pub fn for_each_quadratic_bezier<F>(&self, cb: &mut F)where
F: FnMut(&QuadraticBezierSegment<S>),
pub fn for_each_quadratic_bezier<F>(&self, cb: &mut F)where
F: FnMut(&QuadraticBezierSegment<S>),
Approximates the arc with a sequence of quadratic bézier segments.
pub fn for_each_quadratic_bezier_with_t<F>(&self, cb: &mut F)
pub fn for_each_quadratic_bezier_with_t<F>(&self, cb: &mut F)
Approximates the arc with a sequence of quadratic bézier segments.
pub fn for_each_cubic_bezier<F>(&self, cb: &mut F)where
F: FnMut(&CubicBezierSegment<S>),
pub fn for_each_cubic_bezier<F>(&self, cb: &mut F)where
F: FnMut(&CubicBezierSegment<S>),
Approximates the arc with a sequence of cubic bézier segments.
pub fn for_each_flattened<F>(&self, tolerance: S, cb: &mut F)where
F: FnMut(&LineSegment<S>),
pub fn for_each_flattened<F>(&self, tolerance: S, cb: &mut F)where
F: FnMut(&LineSegment<S>),
Approximates the curve with sequence of line segments.
The tolerance
parameter defines the maximum distance between the curve and
its approximation.
pub fn for_each_flattened_with_t<F>(&self, tolerance: S, cb: &mut F)
pub fn for_each_flattened_with_t<F>(&self, tolerance: S, cb: &mut F)
Approximates the curve with sequence of line segments.
The tolerance
parameter defines the maximum distance between the curve and
its approximation.
The end of the t parameter range at the final segment is guaranteed to be equal to 1.0
.
Trait Implementations§
impl<S> Copy for SvgArc<S>where
S: Copy,
impl<S> StructuralPartialEq for SvgArc<S>
Auto Trait Implementations§
impl<S> Freeze for SvgArc<S>where
S: Freeze,
impl<S> RefUnwindSafe for SvgArc<S>where
S: RefUnwindSafe,
impl<S> Send for SvgArc<S>where
S: Send,
impl<S> Sync for SvgArc<S>where
S: Sync,
impl<S> Unpin for SvgArc<S>where
S: Unpin,
impl<S> UnwindSafe for SvgArc<S>where
S: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more