Struct tiny_skia_path::PathStroker
source · pub struct PathStroker { /* private fields */ }Expand description
A path stroker.
Implementations§
source§impl PathStroker
impl PathStroker
sourcepub fn compute_resolution_scale(ts: &Transform) -> f32
pub fn compute_resolution_scale(ts: &Transform) -> f32
Computes a resolution scale.
Resolution scale is the “intended” resolution for the output. Default is 1.0.
Larger values (res > 1) indicate that the result should be more precise, since it will be zoomed up, and small errors will be magnified.
Smaller values (0 < res < 1) indicate that the result can be less precise, since it will be zoomed down, and small errors may be invisible.
Trait Implementations§
source§impl Clone for PathStroker
impl Clone for PathStroker
source§fn clone(&self) -> PathStroker
fn clone(&self) -> PathStroker
Returns a copy 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 more