mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -05:00
Fix Line.getSide() call.
This commit is contained in:
parent
0cb792de93
commit
a9710cf7c0
1 changed files with 1 additions and 1 deletions
|
@ -1753,7 +1753,7 @@ new function() { // Scope for intersection using bezier fat-line clipping
|
||||||
// Get the side of both control handles
|
// Get the side of both control handles
|
||||||
var line = new Line(p1x, p1y, p2x, p2y, false),
|
var line = new Line(p1x, p1y, p2x, p2y, false),
|
||||||
side1 = line.getSide(h1x, h1y),
|
side1 = line.getSide(h1x, h1y),
|
||||||
side2 = Line.getSide(h2x, h2y);
|
side2 = line.getSide(h2x, h2y);
|
||||||
if (side1 === side2) {
|
if (side1 === side2) {
|
||||||
var edgeSum = (p1x - h2x) * (h1y - p2y)
|
var edgeSum = (p1x - h2x) * (h1y - p2y)
|
||||||
+ (h1x - p2x) * (h2y - p1y);
|
+ (h1x - p2x) * (h2y - p1y);
|
||||||
|
|
Loading…
Reference in a new issue