RT @incre_ment@twitter.com
Probably trivial to the math folks, but recently learned that the correct way to uniformly distribute points in a circle is by generating coordinates in the following manner:
r = R*sqrt(random(1));
and
theta = random(TAU);
🐦🔗: https://twitter.com/incre_ment/status/1453728837829681155
@bleeptrack i have an implementation in ~python, let me know if you want it (gitlab is not working on my smartphone)
Btw, you're approach seems efficient! Congrats
@frankiezafe
Oh not my idea. Found this by incre_ment over at the bird site :)