mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Fix new error in quadraticCurveTo().
We don't seem to have test-cases for these yet.
This commit is contained in:
parent
30374ae3b4
commit
6441a682a8
1 changed files with 1 additions and 1 deletions
|
@ -1690,7 +1690,7 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{
|
|||
this.cubicCurveTo(
|
||||
_handle.add(current.subtract(_handle).multiply(1 / 3)),
|
||||
_handle.add(to.subtract(_handle).multiply(1 / 3)),
|
||||
_to
|
||||
to
|
||||
);
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue