// External includes.
// Standard includes.
// Internal includes.
/// An unsigned integer equal to usize, and specifically used to count the number of "things".
///
/// A type definition was created for this, as "usize" is non-speciifc.
pub type Count = usize;
/// A coordinate, or a component of a coordinate or coordinate system. `Coord` can be a negative, zero, or positive integer.
///
/// A type definition was created for this, as "i32" is non-speciifc.
pub type Coord = i32;
/// Defines a distance. As such, `Length` can be zero, or a positive integer.
///
/// A type definition type was created for this, as "u32" is non-speciifc.
pub type Length = u32;