mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
fix: #734 arcTo
This commit is contained in:
parent
c8aa734808
commit
439adde07a
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user