mirror of https://github.com/ArduPilot/ardupilot
AP_Math: SCurve check direction.length_squared is_zero
This commit is contained in:
parent
e0284bb66a
commit
566621e2ba
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue