Simplify code a bit, by chainging variable declarations.

This commit is contained in:
Jürg Lehni 2011-03-02 16:08:11 +00:00
parent 5d680b1987
commit ab9d07501e

View file

@ -157,11 +157,11 @@ Raster = Item.extend({
// Now rotate the corner points of the image rectangle do find the
// extremas that define our raster's bounds, and update them straight
// away
var width = this._size.width;
var height = this._size.height;
var x = -width / 2;
var y = -height / 2;
var coords = [
var width = this._size.width,
height = this._size.height,
x = -width / 2,
y = -height / 2,
coords = [
x, y,
x + width, y,
x + width, y + height,