environment


    
    function Environment(x, y, w, h)
    {
      this.left = x;   
      this.right = x + w;   
      this.top = y;   
      this.buttom = y + h;
      this.r = new Vector(0.0, 0.0);