//! Coordinate types.
//!
//! ## Convention
//!
//! All pixel coordinates use **(x = column, y = row)**, matching
//! `nalgebra::Point2<f32>`. x increases rightward, y increases downward.
use Point2;
use Scalar;
/// Subpixel coordinate in the image plane.
///
/// `x` is the column (horizontal), `y` is the row (vertical).
pub type PixelCoord = ;
/// Integer pixel index for accumulator addressing.
pub type PixelIndex = ;