79276102

Date: 2024-12-12 17:56:36
Score: 1
Natty:
Report link
  1. Precision loss you described is expected. Always normalize quaternions when using "Eigen" library.

  2. To optimize transformations multiplication of the form "t1.inverse() * t2" in terms of precision, you can implement a custom function t1.inverseMul(t2).

qr = q1.inverse()q2; pr = qr(p2-p1);

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: minorlogic