I have a list of points and would like to determine if they form a circle
问题 I'm using C#, I have a list of Vector points and would like to try and approximate how close they look like a circle. Any ideas how to implement this or if someone else has? 回答1: 1) Pick any three points from that list, find the center of their appropriate circle We can do this, using triangle circumcircle construction method, you find the medians of all three sides (two are sufficient) and their intersection is the center of the circle. Something like this: public PointF findCenter(PointF a,