/*
* gerb
*
* Copyright 2022 - Manos Pitsidianakis
*
* This file is part of gerb.
*
* gerb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* gerb is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gerb. If not, see <http://www.gnu.org/licenses/>.
*/
pub const VERSION_MAJOR: i64 = 1;
pub const VERSION_MINOR: u64 = 1;
pub const UNITS_PER_EM: f64 = 1000.0;
pub const DESCENDER: f64 = -200.0;
pub const X_HEIGHT: f64 = 450.0;
pub const CAP_HEIGHT: f64 = 650.0;
pub const ASCENDER: f64 = 700.0;
pub const ITALIC_ANGLE: f64 = 0.0;