Commit aed7d7fa authored by DonLakeFlyer's avatar DonLakeFlyer

Fix time between shots calculation

parent dbd00af7
...@@ -483,5 +483,5 @@ bool CorridorScanComplexItem::readyForSave(void) const ...@@ -483,5 +483,5 @@ bool CorridorScanComplexItem::readyForSave(void) const
double CorridorScanComplexItem::timeBetweenShots(void) double CorridorScanComplexItem::timeBetweenShots(void)
{ {
return _cruiseSpeed == 0 ? 0 : _cameraCalc.adjustedFootprintSide()->rawValue().toDouble() / _cruiseSpeed; return _cruiseSpeed == 0 ? 0 : _cameraCalc.adjustedFootprintFrontal()->rawValue().toDouble() / _cruiseSpeed;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment