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);
}
