pub trait InspectSample: GetBounds {
    type Sample;

    fn inspect_sample(&self, local_index: Vec2<usize>) -> Self::Sample;
}
Expand description

Inspect the pixels in this image to determine where to crop some away

Required Associated Types

The type of pixel in this pixel grid.

Required Methods

Index is not in world coordinates, but within the data window. Position (0,0) always represents the top left pixel.

Implementors