mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -05:00
Fix white-space mix-up.
This commit is contained in:
parent
64fa328f65
commit
9c09be90f3
1 changed files with 14 additions and 14 deletions
|
@ -180,21 +180,21 @@ PathItem.inject(/** @lends PathItem# */{
|
||||||
path2.remove();
|
path2.remove();
|
||||||
// And then, we are done.
|
// And then, we are done.
|
||||||
return result.reduce();
|
return result.reduce();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the winding contribution of the given point with respect to this
|
* Returns the winding contribution of the given point with respect to this
|
||||||
* PathItem.
|
* PathItem.
|
||||||
*
|
*
|
||||||
* @param {Point} point the location for which to determine the winding
|
* @param {Point} point the location for which to determine the winding
|
||||||
* direction
|
* direction
|
||||||
* @param {Boolean} horizontal wether we need to consider this point as
|
* @param {Boolean} horizontal wether we need to consider this point as
|
||||||
* part of a horizontal curve
|
* part of a horizontal curve
|
||||||
* @return {Number} the winding number
|
* @return {Number} the winding number
|
||||||
*/
|
*/
|
||||||
_getWinding: function(point, horizontal) {
|
_getWinding: function(point, horizontal) {
|
||||||
return PathItem._getWinding(point, this._getMonoCurves(), horizontal);
|
return PathItem._getWinding(point, this._getMonoCurves(), horizontal);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@grouptitle Boolean Path Operations}
|
* {@grouptitle Boolean Path Operations}
|
||||||
|
|
Loading…
Reference in a new issue