[]Struct ggez::graphics::StrokeOptions

pub struct StrokeOptions {
    pub start_cap: LineCap,
    pub end_cap: LineCap,
    pub line_join: LineJoin,
    pub line_width: f32,
    pub miter_limit: f32,
    pub tolerance: f32,
    pub apply_line_width: bool,
    // some fields omitted
}

Parameters for the tessellator.

Fields

start_cap: LineCap

What cap to use at the start of each sub-path.

Default value: LineCap::Butt.

end_cap: LineCap

What cap to use at the end of each sub-path.

Default value: LineCap::Butt.

line_join: LineJoin

See the SVG specification.

Default value: LineJoin::Miter.

line_width: f32

Line width

Default value: StrokeOptions::DEFAULT_LINE_WIDTH.

miter_limit: f32

See the SVG specification.

Must be greater than or equal to 1.0. Default value: StrokeOptions::DEFAULT_MITER_LIMIT.

tolerance: f32

Maximum allowed distance to the path when building an approximation.

See Flattening and tolerance. Default value: StrokeOptions::DEFAULT_TOLERANCE.

apply_line_width: bool

Apply line width

When set to false, the generated vertices will all be positioned in the centre of the line. The width can be applied later on (eg in a vertex shader) by adding the vertex normal multiplied by the line with to each vertex position.

Default value: true.

Methods

impl StrokeOptions

pub const MINIMUM_MITER_LIMIT: f32

Minimum miter limit as defined by the SVG specification.

See StrokeMiterLimitProperty

pub const DEFAULT_MITER_LIMIT: f32

Default miter limit as defined by the SVG specification.

See StrokeMiterLimitProperty

pub const DEFAULT_LINE_CAP: LineCap

pub const DEFAULT_LINE_JOIN: LineJoin

pub const DEFAULT_LINE_WIDTH: f32

pub const DEFAULT_TOLERANCE: f32

pub const DEFAULT: StrokeOptions

pub fn tolerance(tolerance: f32) -> StrokeOptions

pub fn with_tolerance(self, tolerance: f32) -> StrokeOptions

pub fn with_line_cap(self, cap: LineCap) -> StrokeOptions

pub fn with_start_cap(self, cap: LineCap) -> StrokeOptions

pub fn with_end_cap(self, cap: LineCap) -> StrokeOptions

pub fn with_line_join(self, join: LineJoin) -> StrokeOptions

pub fn with_line_width(self, width: f32) -> StrokeOptions

pub fn with_miter_limit(self, limit: f32) -> StrokeOptions

pub fn dont_apply_line_width(self) -> StrokeOptions

Trait Implementations

impl Clone for StrokeOptions

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

Performs copy-assignment from source. Read more

impl Copy for StrokeOptions

impl Default for StrokeOptions

impl PartialEq<StrokeOptions> for StrokeOptions

impl Debug for StrokeOptions

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.

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Any + Debug
[src]

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the same as the type T Read more

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

impl<T> Erased for T

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.