Tagged Questions
4
votes
1answer
159 views
Reverse Rectangle Packing
I have a connected shape that consists of squares put together, e.g. take a squared paper and draw a line along the existing lines that ends at its beginning and does not cross itself.
The goal is ...
1
vote
0answers
167 views
layout algorithm for tightly-packed image thumbnails
I'm working on an image gallery and I'd like to tightly pack the image thumbnails. The thumbnails are:
different aspect ratios
available at the same source resolution (longest edge 256 pixels)
...
1
vote
0answers
141 views
Packing Rectangles into a polygon using JavaScript
I need to pack n rectangles (n<10) of different size into a simple polygon. I am aware of two possible solutions:
Bin packing rectangles into a rectangle. Then the problem becomes finding a ...
5
votes
6answers
2k views
Packing rectangles for compact representation
I am looking for pointers to the solution of the following problem: I have a set of rectangles, whose height is known and x-positions also and I want to pack them in the more compact form. With a ...