//! Common directions in the engine's default coordinate system.
use Vector3;
/// Points right along the positive x-axis.
pub const RIGHT: Vector3 = Vector3 ;
/// Points up along the positive y-axis.
pub const UP: Vector3 = Vector3 ;
/// Points forward along the positive z-axis.
pub const FORWARD: Vector3 = Vector3 ;