Update circle.class.js

Code styles error fix
This commit is contained in:
Andrea Bogazzi 2014-09-18 01:43:39 +02:00
parent 675965da4f
commit d0368e8c27

View file

@ -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,