7 package com.google.appinventor.components.runtime.util;
 
   17   private double bottom;
 
   45     double xmin = Math.max(left, bb.left);
 
   46     double xmax = Math.min(right, bb.right);
 
   47     double ymin = Math.max(top, bb.top);
 
   48     double ymax = Math.min(bottom, bb.bottom);
 
   51     if (xmin > xmax || ymin > ymax) {
 
  101     return "<BoundingBox (left = " + left + 
", top = " + top +
 
  102         ", right = " + right + 
", bottom = " + bottom + 
">";