mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Remove unused argument.
This commit is contained in:
parent
48e9447c47
commit
4adab91a18
1 changed files with 1 additions and 1 deletions
|
@ -1597,7 +1597,7 @@ var Path = PathItem.extend(/** @lends Path# */{
|
||||||
// TODO: intersects(item)
|
// TODO: intersects(item)
|
||||||
// TODO: contains(item)
|
// TODO: contains(item)
|
||||||
}, Base.each(['getPoint', 'getTangent', 'getNormal', 'getCurvature'],
|
}, Base.each(['getPoint', 'getTangent', 'getNormal', 'getCurvature'],
|
||||||
function(name, index) {
|
function(name) {
|
||||||
this[name + 'At'] = function(offset, isParameter) {
|
this[name + 'At'] = function(offset, isParameter) {
|
||||||
var loc = this.getLocationAt(offset, isParameter);
|
var loc = this.getLocationAt(offset, isParameter);
|
||||||
return loc && loc[name]();
|
return loc && loc[name]();
|
||||||
|
|
Loading…
Reference in a new issue