// Copyright (c) 2016 Brandon Thomas <bt@brand.io>, <echelon@gmail.com>
//! Constants for ILDA's dimensional maxima and minima.
/// Extreme right.
pub const MAX_X : i16 = 32767;
/// Extreme left.
pub const MIN_X : i16 = -32768;
/// Maximum height.
pub const MAX_Y : i16 = 32767;
/// Minimum height.
pub const MIN_Y : i16 = -32768;
/// Total width of the projection surface.
pub const WIDTH : u16 = 65535;
/// Total height of the projection surface.
pub const HEIGHT : u16 = 65535;