[−][src]Enum piet_common::kurbo::PathSeg
A segment of a Bézier path.
Variants
Line(Line)Quad(QuadBez)Cubic(CubicBez)Methods
impl PathSeg[src]
pub fn reverse(&self) -> PathSeg[src]
Returns a new PathSeg describing the same path as self, but with
the points reversed.
pub fn to_cubic(&self) -> CubicBez[src]
Convert this segment to a cubic bezier.
Trait Implementations
impl Clone for PathSeg[src]
fn clone(&self) -> PathSeg[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for PathSeg[src]
impl Debug for PathSeg[src]
impl From<CubicBez> for PathSeg[src]
impl From<Line> for PathSeg[src]
impl From<QuadBez> for PathSeg[src]
impl ParamCurve for PathSeg[src]
fn eval(&self, t: f64) -> Point[src]
fn subsegment(&self, range: Range<f64>) -> PathSeg[src]
fn subdivide(&self) -> (Self, Self)[src]
fn start(&self) -> Point[src]
fn end(&self) -> Point[src]
impl ParamCurveArclen for PathSeg[src]
fn arclen(&self, accuracy: f64) -> f64[src]
fn inv_arclen(&self, arclen: f64, accuracy: f64) -> f64[src]
impl ParamCurveArea for PathSeg[src]
fn signed_area(&self) -> f64[src]
impl ParamCurveExtrema for PathSeg[src]
fn extrema(&self) -> ArrayVec<[f64; 4]>[src]
fn extrema_ranges(&self) -> ArrayVec<[Range<f64>; 5]>[src]
fn bounding_box(&self) -> Rect[src]
impl ParamCurveNearest for PathSeg[src]
impl PartialEq<PathSeg> for PathSeg[src]
impl StructuralPartialEq for PathSeg[src]
Auto Trait Implementations
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,
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]
fn round_from(x: T) -> T[src]
impl<T, U> RoundInto<U> for T where
U: RoundFrom<T>, [src]
U: RoundFrom<T>,
fn round_into(self) -> U[src]
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
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.
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>,