no need to pass world param to arch

This commit is contained in:
walterhiggins 2013-02-07 22:22:13 +00:00
parent 66de0f402a
commit d916f1d843

View file

@ -7,8 +7,7 @@ Drone.prototype.testHorizontalStrokeWidth = function(){
radius: 8,
orientation: 'horizontal',
strokeWidth: 3,
quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true},
world: this._getWorld()
quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true}
});
};
@ -19,7 +18,6 @@ Drone.prototype.testVerticalStrokeWidth = function(){
radius: 8,
orientation: 'vertical',
strokeWidth: 3,
quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true},
world: this._getWorld()
quadrants: {topright:true,topleft:true,bottomleft:true,bottomright:true}
});
};