#[non_exhaustive]pub struct FillOptions {
pub tolerance: f32,
pub fill_rule: FillRule,
pub sweep_orientation: Orientation,
pub handle_intersections: bool,
}
Expand description
Parameters for the fill tessellator.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.tolerance: f32
Maximum allowed distance to the path when building an approximation.
Default value: FillOptions::DEFAULT_TOLERANCE
.
fill_rule: FillRule
Set the fill rule.
See the SVG specification.
Currently, only the EvenOdd
rule is implemented.
Default value: EvenOdd
.
sweep_orientation: Orientation
Whether to perform a vertical or horizontal traversal of the geometry.
Default value: Vertical
.
handle_intersections: bool
A fast path to avoid some expensive operations if the path is known to not have any self-intersections.
Do not set this to false
if the path may have intersecting edges else
the tessellator may panic or produce incorrect results. In doubt, do not
change the default value.
Default value: true
.
Implementations§
Source§impl FillOptions
impl FillOptions
Sourcepub const DEFAULT_TOLERANCE: f32 = 0.100000001f32
pub const DEFAULT_TOLERANCE: f32 = 0.100000001f32
Default flattening tolerance.
Sourcepub const DEFAULT_FILL_RULE: FillRule = FillRule::EvenOdd
pub const DEFAULT_FILL_RULE: FillRule = FillRule::EvenOdd
Default Fill rule.
Sourcepub const DEFAULT_SWEEP_ORIENTATION: Orientation = Orientation::Vertical
pub const DEFAULT_SWEEP_ORIENTATION: Orientation = Orientation::Vertical
Default orientation.
pub const DEFAULT: FillOptions
pub fn even_odd() -> FillOptions
pub fn tolerance(tolerance: f32) -> FillOptions
pub fn non_zero() -> FillOptions
pub fn with_tolerance(self, tolerance: f32) -> FillOptions
pub fn with_fill_rule(self, rule: FillRule) -> FillOptions
pub fn with_sweep_orientation(self, orientation: Orientation) -> FillOptions
pub fn with_intersections(self, intersections: bool) -> FillOptions
Trait Implementations§
Source§impl Clone for FillOptions
impl Clone for FillOptions
Source§fn clone(&self) -> FillOptions
fn clone(&self) -> FillOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FillOptions
impl Debug for FillOptions
Source§impl Default for FillOptions
impl Default for FillOptions
Source§fn default() -> FillOptions
fn default() -> FillOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for FillOptions
impl PartialEq for FillOptions
impl Copy for FillOptions
impl StructuralPartialEq for FillOptions
Auto Trait Implementations§
impl Freeze for FillOptions
impl RefUnwindSafe for FillOptions
impl Send for FillOptions
impl Sync for FillOptions
impl Unpin for FillOptions
impl UnwindSafe for FillOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self
using data from the given World