X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=altoslib%2FAltosRotation.java;h=7bcea4874095e4d8c83610ffc23c71b07e4dfc5e;hb=ec46adee44ea08120b1940ca55a5fbdf56874bb1;hp=305f932a0330f158fc363d0f140fe285b0facd6a;hpb=6dbb362b2d1df4d8c2d301e90624aceef8051ef5;p=fw%2Faltos diff --git a/altoslib/AltosRotation.java b/altoslib/AltosRotation.java index 305f932a..7bcea487 100644 --- a/altoslib/AltosRotation.java +++ b/altoslib/AltosRotation.java @@ -16,7 +16,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -package org.altusmetrum.altoslib_12; +package org.altusmetrum.altoslib_14; public class AltosRotation extends AltosQuaternion { private AltosQuaternion rotation; @@ -29,7 +29,7 @@ public class AltosRotation extends AltosQuaternion { * * rot = ao_rotation * vertical * ao_rotation° * rot = ao_rotation * (0,0,0,1) * ao_rotation° - * = ((a.z, a.y, -a.x, a.r) * (a.r, -a.x, -a.y, -a.z)) .z + * = ((-a.z, a.y, -a.x, a.r) * (a.r, -a.x, -a.y, -a.z)) .z * * = (-a.z * -a.z) + (a.y * -a.y) - (-a.x * -a.x) + (a.r * a.r) * = a.z² - a.y² - a.x² + a.r² @@ -40,7 +40,7 @@ public class AltosRotation extends AltosQuaternion { * = (a.z * -a.z) + (-a.y * -a.y) - (a.x * -a.x) + (-a.r * a.r) * = -a.z² + a.y² + a.x² - a.r² * - * tilt = acos(rot); /* in radians */ + * tilt = acos(rot) (in radians) */ public double tilt() { @@ -50,6 +50,34 @@ public class AltosRotation extends AltosQuaternion { return tilt; } + /* Compute azimuth angle from a reference line pointing out the side + * of the airframe + * + * rot = ao_rotation * x_axis * ao_rotation° + * rot = ao_rotation * (0,1,0,0) * ao_rotation° + * = (-a.x, a.r, a.z, -a.y) * (a.r, -a.x, -a.y, -a.z) . x + * = (-a.x * -a.x) + (a.r * a.r) + (a.z * -a.z) - (-a.y * -a.y) + * = a.x² + a.r² - a.z² - a.y² + * + * = (-a.x, a.r, a.z, -a.y) * (a.r, -a.x, -a.y, -a.z) . y + * = (-a.x * -a.y) - (a.r * -a.z) + (a.z * a.r) + (-a.y * -a.x) + * = a.x * a.y + a.r * a.z + a.z * a.r + a.y * a.x + * + * The X value will be the cosine of the rotation. The Y value will be the + * sine of the rotation; use the sign of that to figure out which direction from + * zero we've headed + */ + + public double azimuth() { + double rotx = rotation.x * rotation.x + rotation.r * rotation.r - rotation.z * rotation.z - rotation.y * rotation.y; + double roty = rotation.x * rotation.y + rotation.r * rotation.z + rotation.z * rotation.r + rotation.y * rotation.x; + + double az = Math.acos(rotx) * 180.0 / Math.PI; + if (roty < 0) + return -az; + return az; + } + /* Given euler rotations in three axes, perform a combined rotation using * quaternions */