mod private
{
use crate::*;
impl F32x2
{
pub const X : Self = Self::new( 1.0, 0.0 );
pub const Y : Self = Self::new( 0.0, 1.0 );
pub const NEG_X : Self = Self::new( -1.0, 0.0 );
pub const NEG_Y : Self = Self::new( 0.0, -1.0 );
pub const MIN : Self = Self::splat( f32::MIN );
pub const MAX : Self = Self::splat( f32::MAX );
pub const ZERO : Self = Self::splat( 0.0 );
}
}
crate::mod_interface!
{
}