AP_Math: SCurve check direction.length_squared is_zero

This commit is contained in:
Josh Henderson 2021-06-11 19:17:33 -04:00 committed by Randy Mackay
parent e0284bb66a
commit 566621e2ba
1 changed files with 4 additions and 3 deletions

View File

@ -61,8 +61,9 @@ void SCurve::calculate_track(const Vector3f &origin, const Vector3f &destination
{
init();
// leave track as zero length if origin and destination are the same
if (origin == destination) {
// leave track as zero length if origin and destination are equal or if the new track length squared is zero
const Vector3f track_temp = destination - origin;
if (track_temp.is_zero() || is_zero(track_temp.length_squared())) {
return;
}
@ -84,7 +85,7 @@ void SCurve::calculate_track(const Vector3f &origin, const Vector3f &destination
return;
}
track = destination - origin;
track = track_temp;
const float track_length = track.length();
if (is_zero(track_length)) {
// avoid possible divide by zero