I am looking to fill an arbitrary 2D shape with rectangles, such as that the 2d shape becomes visible by looking at the composite image of the rectangles. The final result should look similar to images produced by this application: http://www.shapecollage.com/ (No, I am not trying to copy said application, but I would like to offer similar functionality as part of a larger application).
I know from this SO question that an optimal solution to my problem might not exist, but a reasonably good result should be possible and would suffice for my means. So far I have tried the following two approaches based on the idea of a flood fill algorithm:
Approach 1
- Start with an arbitrary point in the shape, draw a rectangle at this point.
Check a point to the right, bottom, left and top of the previous image, such as that the points checked correspond to the center of the next image if drawn side by side with the previous image
// Example of finding new x-coordinate for right move
newCenter.x = oldCenter.x + oldWidth + newWidth;
Check if the new center point is a) in the 2D shape and b) not inside an already drawn rectangle. If both conditions are fulfilled draw the rectangle and continue at step 2, otherwise don't do anything.
Approach 2
Same as Approach 1 but without the condition, that the rectangle's new center isn't allowed to be within a drawn rectangle. Instead a padding in all direction is added.
// Example of finding new x-coordinate for right move
newCenter.x = oldCenter.x + oldWidth + newWidth + padding;
Both approaches deliver extremely limited results and fail to completely fill the shape, though sometimes parts of the outline become visible with approach 1.
I am glad for any inputs, ideas or proven methods I could try to achieve a result similar to above examples. Thanks!