mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-17 02:01:05 +00:00
Update circle.class.js
Code styles error fix
This commit is contained in:
parent
675965da4f
commit
d0368e8c27
1 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue