From bea8195c08ccfe23284105f144c07f3ca75d0ece Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Nov 17 2016 18:06:17 +0000 Subject: Merge pull request #922 from Xenobus/fix/div-by-zero Fix crash on editing curve with control point tool --- diff --git a/toonz/sources/tnztools/controlpointselection.cpp b/toonz/sources/tnztools/controlpointselection.cpp index 863a309..59ffcf2 100644 --- a/toonz/sources/tnztools/controlpointselection.cpp +++ b/toonz/sources/tnztools/controlpointselection.cpp @@ -873,7 +873,7 @@ void ControlPointEditorStroke::moveSegment(int beforeIndex, int nextIndex, m_controlPoints[beforeIndex].m_isCusp = true; } else if (!isSpeedOutLinear(beforeIndex) && !isSpeedInLinear(beforeIndex) && !isCusp(beforeIndex)) { - t = 1 - abs(w - w0) / abs(w4 - w0); + t = 1 - fabs(w - w0) / fabs(w4 - w0); moveSingleControlPoint(beforeIndex, t * delta); t = 1 - t; } @@ -887,7 +887,7 @@ void ControlPointEditorStroke::moveSegment(int beforeIndex, int nextIndex, m_controlPoints[nextIndex].m_isCusp = true; } else if (!isSpeedInLinear(nextIndex) && !isSpeedOutLinear(nextIndex) && !isCusp(nextIndex)) { - s = 1 - abs(w4 - w) / abs(w4 - w0); + s = 1 - fabs(w4 - w) / fabs(w4 - w0); moveSingleControlPoint(nextIndex, s * delta); s = 1 - s; }