4

I need to put as many rectangle of same size as possible inside a polygon. The algorithm can put rectangles in different orientation(angle). But they cannot overlap. This is image is an example of the end result: image of rectangles inside larger rectangle

House
  • 73,224
  • 17
  • 184
  • 273

2 Answers2

5

This is called the Pallet Loading Problem. Solving it is actually pretty hard, and we don’t know of an exact solution that always works in reasonable time. And sometimes the solution is not intuitive at all, see for instance:

solution

Here is a comprehensive list of existing algorithms (Recursive Five-block Algorithm, L-Algorithm, Recursive Partitioning Algorithm) with full source code. The same authors have a web application that lets you enter your own data and see the result.

sam hocevar
  • 23,811
  • 2
  • 63
  • 95
  • thank you for the website. those algorithms work for a rectangle within other rectangles, would you know of an algorithm which handles rectangles within polygons? – BenKoshy Feb 03 '17 at 23:46
4

In this sample you can find an algorithm to pack small textures into a big texture, that is quite similar to your matter... and maybe a good start to solve it.

http://create.msdn.com/en-US/education/catalog/sample/sprite_sheet

EDIT:

You can use a tree, where the leafs have empty regions, and the rest of nodes have the rectangles. You can iterate deeply to get a solution.

Algoritm

At first pass, the node contains the empty region. There are four combinations for adding the rectangle, by the orientation ( Vertical, Horizontal) and the way that region will be divided.

Add the four combinations.

Choose the first child,

Try to add next rectangle, adding every combination as before

If there are no room for the rectangle go back, and test next child of this parent.

Repeat that until there is no more rectangles to add.

enter image description here

Blau
  • 3,386
  • 16
  • 19