extern crate nalgebra as na;
use na::Vector2;
#[allow(dead_code)]
pub const P_2_I: Vector2<f64> = Vector2::new(0., f64::INFINITY);
#[allow(dead_code)]
pub const P_1_I: Vector2<f64> = Vector2::new(f64::INFINITY, f64::NEG_INFINITY);
#[allow(dead_code)]
pub const P_0_I: Vector2<f64> = Vector2::new(f64::NEG_INFINITY, f64::NEG_INFINITY);
#[allow(dead_code)]
pub const P_2_M: Vector2<f64> = Vector2::new(0., f64::MAX);
#[allow(dead_code)]
pub const P_1_M: Vector2<f64> = Vector2::new(f64::MAX, f64::MIN);
#[allow(dead_code)]
pub const P_0_M: Vector2<f64> = Vector2::new(f64::MIN, f64::MIN);
#[allow(dead_code)]
pub const EPSILON_0: f64 = 0.0;
#[allow(dead_code)]
pub const LARGE_NUM: f64 = 10000.0;