Ejemplo n.º 1
0
 /**
  * to check if the two layouts' exact box overlapping if overlapping, then there must be at least
  * one of the vertices of box1 is inside box2 OR the other way around.
  *
  * @see binevi.View.LayoutInfo#overlapLayoutBox(LayoutInfo)
  */
 public boolean overlapLayoutBox(LayoutBox b2) {
   LayoutBox b = getExactLayoutBox();
   return b.overlapLayoutBox(b2);
 }