pub struct LineBresenhamInterpolator { /* private fields */ }Expand description
Bresenham line interpolator with subpixel precision.
Port of C++ line_bresenham_interpolator.
Uses 8-bit subpixel scale (256x).
Implementations§
Auto Trait Implementations§
impl Freeze for LineBresenhamInterpolator
impl RefUnwindSafe for LineBresenhamInterpolator
impl Send for LineBresenhamInterpolator
impl Sync for LineBresenhamInterpolator
impl Unpin for LineBresenhamInterpolator
impl UnwindSafe for LineBresenhamInterpolator
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