FOUND Coverage Report


src/
File: distance/vectorize.cpp
Date: 2026-03-24 21:41:51
Lines:
2/2
100.0%
Functions:
1/1
100.0%
Branches:
3/3
100.0%

Line Branch Exec Source
1 #include "distance/vectorize.hpp"
2
3 #include "common/logging.hpp"
4
5 namespace found {
6
7 13 PositionVector LOSTVectorGenerationAlgorithm::Run(const PositionVector &x_E) {
8 // Use the conjugate here, since the orientation is a backwards rotation. In
9 // other words, the orientation is a rotation from the celestial frame to the
10 // camera frame, but we want to go the other way.
11
3/3
✓ Branch 3 taken 13 times.
✓ Branch 6 taken 13 times.
✓ Branch 9 taken 13 times.
26 return -this->orientation.Conjugate().Rotate(x_E);
12 }
13
14 } // namespace found
15