mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -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();
|
||||
// And then, we are done.
|
||||
return result.reduce();
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
* Returns the winding contribution of the given point with respect to this
|
||||
* PathItem.
|
||||
*
|
||||
* @param {Point} point the location for which to determine the winding
|
||||
* direction
|
||||
* @param {Boolean} horizontal wether we need to consider this point as
|
||||
* part of a horizontal curve
|
||||
* @return {Number} the winding number
|
||||
*/
|
||||
_getWinding: function(point, horizontal) {
|
||||
return PathItem._getWinding(point, this._getMonoCurves(), horizontal);
|
||||
},
|
||||
/**
|
||||
* Returns the winding contribution of the given point with respect to this
|
||||
* PathItem.
|
||||
*
|
||||
* @param {Point} point the location for which to determine the winding
|
||||
* direction
|
||||
* @param {Boolean} horizontal wether we need to consider this point as
|
||||
* part of a horizontal curve
|
||||
* @return {Number} the winding number
|
||||
*/
|
||||
_getWinding: function(point, horizontal) {
|
||||
return PathItem._getWinding(point, this._getMonoCurves(), horizontal);
|
||||
},
|
||||
|
||||
/**
|
||||
* {@grouptitle Boolean Path Operations}
|
||||
|
|
Loading…
Reference in a new issue