Struct lyon_algorithms::hatching::Hatcher
source · pub struct Hatcher { /* private fields */ }
Expand description
A context object that can fill a path with a hatching or dot pattern.
Implementations§
source§impl Hatcher
impl Hatcher
sourcepub fn hatch_path<Iter>(
&mut self,
it: Iter,
options: &HatchingOptions,
output: &mut dyn HatchBuilder
)
pub fn hatch_path<Iter>( &mut self, it: Iter, options: &HatchingOptions, output: &mut dyn HatchBuilder )
Generate hatches for a path.
sourcepub fn dot_path<Iter>(
&mut self,
it: Iter,
options: &DotOptions,
output: &mut dyn DotBuilder
)
pub fn dot_path<Iter>( &mut self, it: Iter, options: &DotOptions, output: &mut dyn DotBuilder )
Generate dots for a path.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Hatcher
impl Send for Hatcher
impl Sync for Hatcher
impl Unpin for Hatcher
impl UnwindSafe for Hatcher
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