refactor: Rename CInterpolatorPbh to CInterpolatorLinearPbh

This commit is contained in:
Lars Toenning
2024-01-09 22:33:13 +01:00
parent 2f3e4fee1e
commit 3bc2d4062c
10 changed files with 49 additions and 49 deletions

View File

@@ -27,7 +27,7 @@ namespace BlackMisc::Simulation
m_startSituation(startSituation), m_pbh(0, startSituation, startSituation)
{}
CInterpolatorLinear::CInterpolant::CInterpolant(const CAircraftSituation &startSituation, const CInterpolatorPbh &pbh) : IInterpolant(1),
CInterpolatorLinear::CInterpolant::CInterpolant(const CAircraftSituation &startSituation, const CInterpolatorLinearPbh &pbh) : IInterpolant(1),
m_startSituation(startSituation), m_pbh(pbh)
{}
@@ -39,7 +39,7 @@ namespace BlackMisc::Simulation
{
BLACK_VERIFY_X(isValidTimeFraction(m_simulationTimeFraction), Q_FUNC_INFO, "Time fraction needs to be within [0;1]");
}
m_pbh = CInterpolatorPbh(m_simulationTimeFraction, startSituation, endSituation);
m_pbh = CInterpolatorLinearPbh(m_simulationTimeFraction, startSituation, endSituation);
}
void CInterpolatorLinear::anchor()