Trait Segment

Source
pub trait Segment: Copy + Sized {
    type Scalar: Scalar;

Show 15 methods // Required methods fn from(&self) -> Point<Self::Scalar>; fn to(&self) -> Point<Self::Scalar>; fn sample(&self, t: Self::Scalar) -> Point<Self::Scalar>; fn derivative(&self, t: Self::Scalar) -> Vector<Self::Scalar>; fn split(&self, t: Self::Scalar) -> (Self, Self); fn before_split(&self, t: Self::Scalar) -> Self; fn after_split(&self, t: Self::Scalar) -> Self; fn split_range(&self, t_range: Range<Self::Scalar>) -> Self; fn flip(&self) -> Self; fn approximate_length(&self, tolerance: Self::Scalar) -> Self::Scalar; fn for_each_flattened_with_t( &self, tolerance: Self::Scalar, callback: &mut dyn FnMut(&LineSegment<Self::Scalar>, Range<Self::Scalar>), ); // Provided methods fn x(&self, t: Self::Scalar) -> Self::Scalar { ... } fn y(&self, t: Self::Scalar) -> Self::Scalar { ... } fn dx(&self, t: Self::Scalar) -> Self::Scalar { ... } fn dy(&self, t: Self::Scalar) -> Self::Scalar { ... }
}
Expand description

Common APIs to segment types.

Required Associated Types§

Required Methods§

Source

fn from(&self) -> Point<Self::Scalar>

Start of the curve.

Source

fn to(&self) -> Point<Self::Scalar>

End of the curve.

Source

fn sample(&self, t: Self::Scalar) -> Point<Self::Scalar>

Sample the curve at t (expecting t between 0 and 1).

Source

fn derivative(&self, t: Self::Scalar) -> Vector<Self::Scalar>

Sample the derivative at t (expecting t between 0 and 1).

Source

fn split(&self, t: Self::Scalar) -> (Self, Self)

Split this curve into two sub-curves.

Source

fn before_split(&self, t: Self::Scalar) -> Self

Return the curve before the split point.

Source

fn after_split(&self, t: Self::Scalar) -> Self

Return the curve after the split point.

Source

fn split_range(&self, t_range: Range<Self::Scalar>) -> Self

Return the curve inside a given range of t.

This is equivalent splitting at the range’s end points.

Source

fn flip(&self) -> Self

Swap the direction of the segment.

Source

fn approximate_length(&self, tolerance: Self::Scalar) -> Self::Scalar

Compute the length of the segment using a flattened approximation.

Source

fn for_each_flattened_with_t( &self, tolerance: Self::Scalar, callback: &mut dyn FnMut(&LineSegment<Self::Scalar>, Range<Self::Scalar>), )

Approximates the curve with sequence of line segments.

The tolerance parameter defines the maximum distance between the curve and its approximation.

The parameter t at the final segment is guaranteed to be equal to 1.0.

Provided Methods§

Source

fn x(&self, t: Self::Scalar) -> Self::Scalar

Sample x at t (expecting t between 0 and 1).

Source

fn y(&self, t: Self::Scalar) -> Self::Scalar

Sample y at t (expecting t between 0 and 1).

Source

fn dx(&self, t: Self::Scalar) -> Self::Scalar

Sample x derivative at t (expecting t between 0 and 1).

Source

fn dy(&self, t: Self::Scalar) -> Self::Scalar

Sample y derivative at t (expecting t between 0 and 1).

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§