
function Camera(){
	this.position = new Vector3(0,0,0);
}

Camera.prototype.getWidth = function(){
	return 400;
}

Camera.prototype.getHeight = function(){
	return context.height;
}
