pub trait ContiguousIteratorExtwhere
    Self: Iterator + Sized,
    <Self as Iterator>::Item: PixelColor,{
    // Required method
    fn into_pixels(self, bounding_box: &Rectangle) -> IntoPixels<Self> ;
}
Expand description

Extension trait for contiguous iterators.

Required Methods§

source

fn into_pixels(self, bounding_box: &Rectangle) -> IntoPixels<Self>

Converts a contiguous iterator into a pixel iterator.

Implementors§