I have googled this and not come up with an answer yet, but basically, I'm trying to find out the distance between each point or vertice on a sphere (all points are evenly spaced). I already know this information, but I want to figure it out using math.
Radius = 1
Number of points = 382
Distance between points: 0.156918
I have tried calculating the surface area, then dividing that by the number of points, is that correct?
(4 * pi * sqrt(radius)) / 382
but no luck, assuming that my idea is correct, should finding the surface area, divided by the number of points give me the distance between each?
Shannon
For a large number of points, the difference between a sphere and a plane will not be important, and you can equidistribute the points on a plane. What pattern are you using? Equilateral triangles, squares, and hexagons are all candidates. For a hexagonal pattern, there will be half as many hexagons as points, so the area of a hexagon is $A=\frac {8 \pi r^2}{n}$ where $n$ is the number of points. The side will then be $s=\sqrt{\frac {2A}{3\sqrt 3}}=\sqrt{\frac {16 \pi r^2}{3n\sqrt 3}}$ per Wikipedia. You can do a similar calculation for the other lattices. The distance will again decrease as the square root of $n$, but the constant will be somewhat different.