A multiplayer VR framework w/voice chat
1use std::f32::consts::PI; 2 3pub fn degrees_to_rad( angle: f32 ) -> f32{ 4 angle * ( PI / 180.0 ) 5}