remace / OC-P13_Archery_Buddy

study app on helping archers in their everyday archery problems
http://www.archerybuddy.tech
Other
0 stars 0 forks source link

calculate the best quiver on a stats session #18

Closed remace closed 1 year ago

remace commented 2 years ago

given a list of shots made with arrows used multiple times,

remace commented 1 year ago

to find the nearest barycentres, my idea is to, until the quiver has the right amount of arrows, recursively:

see: https://github.com/remace/OC-P13_Archery_Buddy/issues/18#issuecomment-1493325487

my previous idea was a bad one:

  • minimizing area of convex hull favors far and aligned points rather than nearer one
  • better minimize the minimal bounding circle of convex hull

after testing it seems a much better algorithm.

remace commented 1 year ago

my previous idea was a bad one:

after testing it seems a much better algorithm.