//! Integer coordinates for discrete grid cells.
//!
//! [`Point`] is a zero-based `x`/`y` address whose bounds are defined by a concrete
//! [`crate::Grid`]; loaders choose the visual origin, not solvers. Prefer
//! [`condor_core::Point2`] for any-angle or continuous coordinates.
/// A single grid cell address (`x` column, `y` row), zero-based.
///
/// Bounds are relative to a concrete [`crate::Grid`]; construction does not validate.