FOUND Coverage Report


src/
File: distance/vectorize.cpp
Date: 2025-11-20 21:57:26
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 15 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 15 times.
✓ Branch 6 taken 15 times.
✓ Branch 9 taken 15 times.
30 return -this->orientation.Conjugate().Rotate(x_E);
12 }
13
14 } // namespace found
15