Merge pull request #13 from vishesh/task/rename-make-scene-image

Add color argument to makeSceneImage() function
This commit is contained in:
Jens Axel Søgaard 2015-05-04 22:03:39 +02:00
commit 9ce33a4e98
2 changed files with 24 additions and 20 deletions

View File

@ -689,7 +689,7 @@ EXPORTS['empty-scene'] =
var height = checkNonNegativeReal(MACHINE, 'empty-scene', 1);
var color = (MACHINE.a===3)? checkColor(MACHINE, 'empty-scene', 2) : null;
return new SceneImage(jsnums.toFixnum(width),
return makeSceneImage(jsnums.toFixnum(width),
jsnums.toFixnum(height),
color,
[],
@ -710,6 +710,7 @@ EXPORTS['put-image'] =
} else {
var newScene = makeSceneImage(background.getWidth(),
background.getHeight(),
null,
[],
false);
newScene = newScene.add(background, background.getWidth()/2, background.getHeight()/2);
@ -734,6 +735,7 @@ EXPORTS['place-image'] =
} else {
var newScene = makeSceneImage(background.getWidth(),
background.getHeight(),
null,
[],
false);
newScene = newScene.add(background, background.getWidth()/2, background.getHeight()/2);
@ -768,6 +770,7 @@ EXPORTS['place-image/align'] =
} else {
var newScene = makeSceneImage(background.getWidth(),
background.getHeight(),
null,
[],
false);
newScene = newScene.add(background, background.getWidth()/2, background.getHeight()/2);
@ -923,6 +926,7 @@ EXPORTS['scene+line'] =
// make a scene containing the image
var newScene = makeSceneImage(jsnums.toFixnum(img.getWidth()),
jsnums.toFixnum(img.getHeight()),
null,
[],
false);
newScene = newScene.add(img, img.getWidth()/2, img.getHeight()/2);

View File

@ -288,7 +288,7 @@ var isScene = function(x) {
//////////////////////////////////////////////////////////////////////
// SceneImage: primitive-number primitive-number color (listof image) -> Scene
// SceneImage: primitive-number primitive-number color (listof image) boolean -> Scene
var SceneImage = function(width, height, color, children, withBorder) {
BaseImage.call(this);
this.width = width;
@ -1311,8 +1311,8 @@ var colorListToImage = function(listOfColors,
var makeSceneImage = function(width, height, children, withBorder) {
return new SceneImage(width, height, null, children, withBorder);
var makeSceneImage = function(width, height, color, children, withBorder) {
return new SceneImage(width, height, color, children, withBorder);
};
var makeCircleImage = function(radius, style, color) {
return new EllipseImage(2*radius, 2*radius, style, color);