From 76a7e0f296d8d2ac37a423a5aad3ba9930d7fa8e Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 3 Mar 2013 13:27:27 +0100 Subject: [PATCH] 0001018: Possible inconsistencies between Euler angles, quaternion and matrix --- src/Base/RotationPy.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/Base/RotationPy.xml b/src/Base/RotationPy.xml index 111cfb74c..7a3e9ff31 100644 --- a/src/Base/RotationPy.xml +++ b/src/Base/RotationPy.xml @@ -14,7 +14,17 @@ This is the Rotation export class - A Rotation + + A Rotation using a quaternion. + The Rotation object can be created by: + -- an empty parameter list + -- a Rotation object + -- a Vector (axis) and a float (angle) + -- two Vectors (rotation from/to vector) + -- three floats (Euler angles) as yaw-pitch-roll + -- four floats (Quaternion) where the quaternion is specified as: + q=xi+yj+zk+w, i.e. the last parameter is the real part +