Fixed a typo in a comment.

This commit is contained in:
Nathan Vegdahl 2017-03-29 13:20:58 -07:00
parent 7223f69151
commit f6ffd8d30b

View File

@ -152,7 +152,7 @@ pub fn coordinate_system_from_vector(v: Vector) -> (Vector, Vector, Vector) {
/// from: The vector we're transforming.
/// toz: The vector whose space we are transforming "from" into.
///
/// Returns he transformed vector.
/// Returns the transformed vector.
pub fn zup_to_vec(from: Vector, toz: Vector) -> Vector {
let (toz, tox, toy) = coordinate_system_from_vector(toz.normalized());