diff --git a/src/core/graphics/Graphics.js b/src/core/graphics/Graphics.js index d9ceae8..0a9cba3 100644 --- a/src/core/graphics/Graphics.js +++ b/src/core/graphics/Graphics.js @@ -483,26 +483,11 @@ if (this.currentPath) { - if (anticlockwise && this.filling) - { - this.currentPath.shape.points.push(cx, cy); - } - else - { - this.currentPath.shape.points.push(startX, startY); - } + this.currentPath.shape.points.push(startX, startY); } else { - if (anticlockwise && this.filling) - { - - this.moveTo(cx, cy); - } - else - { - this.moveTo(startX, startY); - } + this.moveTo(startX, startY); } var points = this.currentPath.shape.points;