From c14bf88bd14c79485a2e68d83c27c36c95f23d85 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 2 Jul 2022 00:15:16 -0700 Subject: [PATCH] Fix warnings --- src/util.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/util.rs b/src/util.rs index e213f22..5ed61b1 100644 --- a/src/util.rs +++ b/src/util.rs @@ -66,10 +66,10 @@ pub fn to_yaw_and_pitch(d: Vec3) -> (f32, f32) { (yaw, pitch) } -/// Takes yaw and pitch angles (in degrees) and returns a normalized direction -/// vector. -/// -/// This function is the inverse of [`to_yaw_and_pitch`]. -pub fn from_yaw_and_pitch(yaw: f32, pitch: f32) -> Vec3 { - todo!() -} +// /// Takes yaw and pitch angles (in degrees) and returns a normalized direction +// /// vector. +// /// +// /// This function is the inverse of [`to_yaw_and_pitch`]. +// pub fn from_yaw_and_pitch(yaw: f32, pitch: f32) -> Vec3 { +// todo!() +// }