dependence:
"natninter": "^0.1.3"
function hasAllSeedsInside() { var size = this._output; return this._seeds.every(function (s) { return s.x >= 0 && s.y >= 0 && s.x < size.width && s.y < size.width; }); }
x and y are ALL compared to the size.width. But setOutputSize sets this._output.width and this._output.height.
The y should be compared to size.height instead?
dependence:
"natninter": "^0.1.3"
function hasAllSeedsInside() { var size = this._output; return this._seeds.every(function (s) { return s.x >= 0 && s.y >= 0 && s.x < size.width && s.y < size.width; }); }x and y are ALL compared to the size.width. But setOutputSize sets this._output.width and this._output.height.
The y should be compared to size.height instead?