Summary: A basic 2D circle packing plug-in for Rhino 4
This plug-in was made during the London 2007 DotNET workshop. It is a very simple circle packing algorithm which iteratively attempts to find a solution.
The command exposes several options, but there are no advanced features. The essential source code (VB.NET) is also available from this wiki page.
This example plug-in showcases some Rhino SDK basics such as openNURBS class inheritance and using Getters. It also provides a simple example of using display conduits to draw feedback geometry.
Download the plug-in (Rhino 4).
Download the Circle Packing command source (VB.NET).
Download the circle packing classes (VB.NET):
How the algorithm works: Every circle in the array is compared with all circles that have a higher index. When two circles overlap (when the distance between A and B is less than the sum of both radii) then the A circle is moved away from B (V is the translation vector), until they are touching.
Before the collision test is performed, the entire array containing all circles is sorted from the center outwards. After every collision pass, the circles move towards the basepoint to reduce the amount of wasted space. The magnitude of this motion decreases exponentially as the algorithm progresses. This plug-in comes with four different packing algorithms. The details of each differ slightly from the default behavior (Fast packing) described above.
Circle packing efficiency expressed as the ratio of total circle area divided by the convex hull area. This results in an underestimate of efficiency which decreases as the number of circles increases.