From ee0e09b2dfbfb473180e412d8a09ce561ba67464 Mon Sep 17 00:00:00 2001 From: Vishesh Yadav Date: Sat, 2 May 2015 00:22:33 -0400 Subject: [PATCH] FIX: invalid number of arguments passed to SceneImage #10 --- whalesong/image/private/js-impl.js | 5 +++-- whalesong/image/private/kernel.js | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/whalesong/image/private/js-impl.js b/whalesong/image/private/js-impl.js index 9b05471..0c9a1e9 100644 --- a/whalesong/image/private/js-impl.js +++ b/whalesong/image/private/js-impl.js @@ -687,8 +687,9 @@ EXPORTS['empty-scene'] = function(MACHINE) { var width = checkNonNegativeReal(MACHINE, 'empty-scene', 0); var height = checkNonNegativeReal(MACHINE, 'empty-scene', 1); - var color = (MACHINE.a===3)? checkColor(MACHINE, 'empty-scene', 2) : null; - return makeSceneImage(jsnums.toFixnum(width), + var color = (MACHINE.a===3)? checkColor(MACHINE, 'empty-scene', 2) : null; + + return new SceneImage(jsnums.toFixnum(width), jsnums.toFixnum(height), color, [], diff --git a/whalesong/image/private/kernel.js b/whalesong/image/private/kernel.js index fc2f756..03cda2c 100644 --- a/whalesong/image/private/kernel.js +++ b/whalesong/image/private/kernel.js @@ -303,6 +303,7 @@ SceneImage.prototype = heir(BaseImage.prototype); SceneImage.prototype.add = function(anImage, x, y) { return new SceneImage(this.width, this.height, + null, this.children.concat([[anImage, x - anImage.getWidth()/2, y - anImage.getHeight()/2]]), @@ -1311,7 +1312,7 @@ var colorListToImage = function(listOfColors, var makeSceneImage = function(width, height, children, withBorder) { - return new SceneImage(width, height, children, withBorder); + return new SceneImage(width, height, null, children, withBorder); }; var makeCircleImage = function(radius, style, color) { return new EllipseImage(2*radius, 2*radius, style, color);