[][src]Struct lyon_algorithms::hatching::HatchingOptions

pub struct HatchingOptions {
    pub tolerance: f32,
    pub angle: Angle<f32>,
    pub compute_tangents: bool,
    pub uv_origin: Point,
    // some fields omitted
}

Parameters for the hatcher.

Fields

tolerance: f32

Maximum allowed distance to the path when building an approximation.

See Flattening and tolerance.

Default value: HatchingOptions::DEFAULT_TOLERANCE.

angle: Angle<f32>

Angle between the hatching pattern and the x axis.

Default value: HatchingOptions::ANGLE.

compute_tangents: bool

Whether to compute the tangent of the outline where it meets the hatching pattern.

Default value: `true, .

uv_origin: Point

The origin of the rotated uv coordinates.

Methods

impl HatchingOptions[src]

pub const DEFAULT_TOLERANCE: f32[src]

Default flattening tolerance.

pub const DEFAULT_ANGLE: Angle<f32>[src]

Default hatching angle.

pub const DEFAULT_UV_ORIGIN: Point[src]

pub const DEFAULT: Self[src]

pub fn tolerance(tolerance: f32) -> Self[src]

pub fn angle(angle: Angle<f32>) -> Self[src]

pub fn with_tolerance(self, tolerance: f32) -> Self[src]

pub fn with_angle(self, angle: Angle<f32>) -> Self[src]

pub fn with_tangents(self, compute_tangents: bool) -> Self[src]

Trait Implementations

impl PartialEq<HatchingOptions> for HatchingOptions[src]

impl Default for HatchingOptions[src]

impl Clone for HatchingOptions[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for HatchingOptions[src]

impl Debug for HatchingOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.