1#ifndef SRC_DISTANCE_VECTORIZE_HPP_ 
    2#define SRC_DISTANCE_VECTORIZE_HPP_ 
    4#include "common/spatial/attitude-utils.hpp" 
    5#include "common/style.hpp" 
    6#include "common/pipeline/stages.hpp" 
   40        : 
orientation(relativeOrientation * referenceOrientation) {}
 
 
 
FeatureDetectionVectorGenerationAlgorithm figures out the distance vector of the satellite relative t...
Definition vectorize.hpp:81
 
PositionVector Run(const PositionVector &x_E) override
Place documentation here.
 
~FeatureDetectionVectorGenerationAlgorithm()
Place documentation here.
 
FeatureDetectionVectorGenerationAlgorithm()
Place documentation here.
 
A FunctionStage is a data structure that wraps a function, and taking in parameter Input and returnin...
Definition stages.hpp:56
 
The LOSTVectorGenerationAlgorithm class houses the a Vector Assembly Algorithm that calculates the po...
Definition vectorize.hpp:28
 
LOSTVectorGenerationAlgorithm(Quaternion relativeOrientation, Quaternion referenceOrientation)
Creates a LOSTVectorGenerationAlgorithm object.
Definition vectorize.hpp:39
 
LOSTVectorGenerationAlgorithm(Quaternion orientation)
Creates a LOSTVectorGenerationAlgorithm object.
Definition vectorize.hpp:50
 
Quaternion orientation
Orientation from LOST.
Definition vectorize.hpp:73
 
PositionVector Run(const PositionVector &x_E) override
Runs the Vector Assembly Algorithm, which finds the vector of the satellite with respect to Earth's c...
Definition vectorize.cpp:7
 
A Quaternion is a mutable object that represents a Quaternion.
Definition attitude-utils.hpp:474
 
A Vec3 is a mutable object that represents a 3D Vector.
Definition attitude-utils.hpp:98
 
The VectorGenerationAlgorithm class houses the Vector Assembly Algorithm.
Definition vectorize.hpp:15