diff --git a/src/core/graphics/Graphics.js b/src/core/graphics/Graphics.js index e256c80..af38a17 100644 --- a/src/core/graphics/Graphics.js +++ b/src/core/graphics/Graphics.js @@ -480,7 +480,7 @@ startAngle += Math.PI * 2; } - const sweep = anticlockwise ? (startAngle - endAngle) : (endAngle - startAngle); + const sweep = endAngle - startAngle; const segs = Math.ceil(Math.abs(sweep) / (Math.PI * 2)) * 40; if (sweep === 0)