In a $64\times 200$ region, the distance between any two points must be at least $25$.
What is the maximum number of points that can be placed inside the region? The most I could fit was 30.
What if they were placed in the most space-inefficient way? (Least number of points present such that no more can be placed)
This has to do with random obstacle generation in a game I'm working on.
If the size of the rectangular region is $w = 64$ by $h = 200$, and $R = 25$ is the minimum distance between any pair of points, and points are allowed to reside on the perimeter of the region, then the number of points you can put within the rectangular region cannot exceed $N$, $$N \le \left \lfloor \frac{4 (w + R)(h + R)}{\pi R^2} \right \rfloor$$ because each point excludes a circular region whose area is $\pi\left(\frac{R}{2}\right)^2 = \frac{\pi R^2}{4}$.
In this case, $N \le \lfloor 40.794595 \rfloor$ i.e. $N \le 40$.
From circle packing, we know that not all "area" is used in this way; that you cannot cover all of a surface with non-overlapping circles. In practice, it means that the true, absolute number is somewhat less. (Even the shape, or aspect ratio of the rectangle, matters.)
I am not aware of any methods of finding the actual absolute number of circles/disks/points, because there is an infinite number of positions for each point within the area. Since this is for a game, I'd expect the above known absolute upper limit to suffice, and the actual number of obstacles to vary.