MCPcopy Create free account
hub / github.com/Kitware/TeleSculptor / AbstractScaleAlgorithm

Class AbstractScaleAlgorithm

gui/MatchMatrixAlgorithms.h:70–80  ·  view source on GitHub ↗

-----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

68
69//-----------------------------------------------------------------------------
70class AbstractScaleAlgorithm
71{
72public:
73 AbstractScaleAlgorithm() = default;
74 virtual ~AbstractScaleAlgorithm() = default;
75
76 AbstractScaleAlgorithm(AbstractScaleAlgorithm const&) = delete;
77 AbstractScaleAlgorithm& operator=(AbstractScaleAlgorithm const&) = delete;
78
79 virtual double operator()(double rawValue) const = 0;
80};
81
82//-----------------------------------------------------------------------------
83class LinearScaleAlgorithm : public AbstractScaleAlgorithm

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected