From 437e2ec9f94edfe21bc635615ba15151c60403e6 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Mon, 18 Apr 2016 17:50:12 +1000 Subject: [PATCH] Document pitch/yaw/roll --- src/euler.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/euler.rs b/src/euler.rs index bd5f618..8b29421 100644 --- a/src/euler.rs +++ b/src/euler.rs @@ -66,11 +66,11 @@ use num::BaseFloat; #[derive(PartialEq, Eq)] #[derive(RustcEncodable, RustcDecodable)] pub struct Euler { - /// The angle to apply around the _x_ axis. + /// The angle to apply around the _x_ axis. Also known at the _pitch_ angle. pub x: A, - /// The angle to apply around the _y_ axis. + /// The angle to apply around the _y_ axis. Also known at the _yaw_ angle. pub y: A, - /// The angle to apply around the _z_ axis. + /// The angle to apply around the _z_ axis. Also known at the _roll_ angle. pub z: A, }