Example #1
0
 public void updateRectangle(float scale, float x, float y) {
   super.updateRectangle(scale, x, y);
   float yPos = y - height;
   for (Box b : children) {
     yPos += b.getHeight();
     b.updateRectangle(scale, x + b.getShift() - leftMostPos, yPos);
     yPos += b.getDepth();
   }
 }
Example #2
0
 public void updateRectangle(float scale, float x, float y) {
   super.updateRectangle(scl * scale, x, y);
 }