Merge pull request #736 from Astray-git/fix/arcTo_#734

fix: #734 arcTo
This commit is contained in:
Anton Lavrenov
2019-09-09 10:57:23 -05:00
committed by GitHub

View File

@@ -287,8 +287,8 @@ export class Context {
* @method
* @name Konva.Context#arcTo
*/
arcTo(a0, a1, a2, a3, a4, a5) {
this._context.arc(a0, a1, a2, a3, a4, a5);
arcTo(a0, a1, a2, a3, a4) {
this._context.arcTo(a0, a1, a2, a3, a4);
}
/**
* beginPath function.