show/hide this revision's text 3 code formatting

Something like this?

  • Sort your collection of rectangles by x-position
  • write a method that checks which rectangles are present on a certain interval of the x-axis

    Collection overlaps (int startx, int endx, Collection rects){ ... }

  • loop over the collection of rectangles


    Collection toDraw;  
    Collection drawn;  
    foreach (Rectangle r in toDraw){  
    Collection overlapping = overlaps (r.x, r.x+r.width, drawn);  
    int y = 0;  
    foreach(Rectangle overlapRect in overlapping){  
    y += overlapRect.height;  
    }  
    drawRectangle(y, Rectangle);  
    drawn.add(r);  
    }  
show/hide this revision's text 2 spelling

Something like this?

  • I suggest sorting

    • Sort your collection of rectangles by x-position
    • write a method that checks which rectangles are present on a certain interval of the x-axis

      Collection overlaps (int startx, int endx, Collection rects){ ... }

    • loop over the collection of rectangles

      Collection toDraw;
      Collection drawn;
      foreach (Rectangle r in toDraw){
      Collection overlapping = overlaps (r.x, r.x+r.width, drawn);
      int y = 0;
      foreach(Rectangle overlapRect in overlapping){
      y += overlapRect.height;
      }
      drawRectangle(y, Rectangle);
      drawn.add(r);
      }

show/hide this revision's text 1

Something like this?

  • I suggest sorting your collection of rectangles by x-position
  • write a method that checks which rectangles are present on a certain interval of the x-axis

    Collection overlaps (int startx, int endx, Collection rects){ ... }

  • loop over the collection of rectangles

    Collection toDraw;
    Collection drawn;
    foreach (Rectangle r in toDraw){
    Collection overlapping = overlaps (r.x, r.x+r.width, drawn);
    int y = 0;
    foreach(Rectangle overlapRect in overlapping){
    y += overlapRect.height;
    }
    drawRectangle(y, Rectangle);
    drawn.add(r);
    }