[−]Struct piet_common::kurbo::LineIntersection
An intersection of a Line and a PathSeg.
This can be generated with the PathSeg::intersect_line method.
Fields
line_t: f64The 'time' that the intersection occurs, on the line.
This value is in the range 0..1.
segment_t: f64The 'time' that the intersection occurs, on the path segment.
This value is nominally in the range 0..1, although it may slightly exceed that range at the boundaries of segments.
Trait Implementations
impl Clone for LineIntersection
pub fn clone(&self) -> LineIntersection
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for LineIntersection
impl Debug for LineIntersection
Auto Trait Implementations
impl RefUnwindSafe for LineIntersection
impl Send for LineIntersection
impl Sync for LineIntersection
impl Unpin for LineIntersection
impl UnwindSafe for LineIntersection
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> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[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>,