我正在尝试分别从 ArrayList 的点将所有 x 和 y 坐标相加。
public static ArrayList knots = new ArrayList<Point>();
public Point centroid() {
Point center = new Point();
for(int i=0; i<knots.size(); i++) {
????????????????????
return center;
}
我如何找到质心?