From d0368e8c27a6f9854d1d0a3edee299c6972c633b Mon Sep 17 00:00:00 2001 From: Andrea Bogazzi Date: Thu, 18 Sep 2014 01:43:39 +0200 Subject: [PATCH] Update circle.class.js Code styles error fix --- src/shapes/circle.class.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/shapes/circle.class.js b/src/shapes/circle.class.js index f442bf32..e9119ba1 100644 --- a/src/shapes/circle.class.js +++ b/src/shapes/circle.class.js @@ -40,13 +40,12 @@ */ startAngle: 0, - /** * End angle of the circle * @type Number * @default 2Pi */ - endAngle: pi * 2, + endAngle: pi * 2, /** * Constructor @@ -115,7 +114,8 @@ ' ', this.getSvgTransformMatrix(), '"/>\n' ); - } else { + } + else { var startX = Math.cos(this.startAngle) * this.radius, startY = Math.sin(this.startAngle) * this.radius, endX = Math.cos(this.endAngle) * this.radius,