Commit 5abeec75 authored by Andrey Filippov's avatar Andrey Filippov

more verbose

parent 723693ce
......@@ -192,6 +192,10 @@ public class Imx5 {
double[] quat, // additional correction
double[] targ_quat, // quaternion to be corrected
boolean inverse) {
if ((quat==null) || (targ_quat == null)) {
System.out.println("applyQuaternionToQuaternion(): returning null");
return null;
}
Rotation ims_rot = new Rotation(quat[0],quat[1],quat[2],quat[3],true);
Rotation targ_rot = new Rotation(targ_quat[0],targ_quat[1],targ_quat[2],targ_quat[3],true);
Rotation rslt_rot;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment