mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 06:00:56 -05:00
Remove unused matrix parameter in PlacedSymbol#_hitTest()
This commit is contained in:
parent
720d691e16
commit
ee7c604ec0
1 changed files with 2 additions and 2 deletions
|
@ -115,8 +115,8 @@ var PlacedSymbol = Item.extend(/** @lends PlacedSymbol# */{
|
|||
cacheItem);
|
||||
},
|
||||
|
||||
_hitTest: function(point, options, matrix) {
|
||||
var res = this._symbol._definition._hitTest(point, options, matrix);
|
||||
_hitTest: function(point, options) {
|
||||
var res = this._symbol._definition._hitTest(point, options);
|
||||
// TODO: When the symbol's definition is a path, should hitResult
|
||||
// contain information like HitResult#curve?
|
||||
if (res)
|
||||
|
|
Loading…
Reference in a new issue