Lines Matching refs:points
217 // with two points in the centers and with edge lengths equal to radii
234 // The triangle given by the points:
241 // now compute the intersection points
282 void Circle::fit(std::vector<Point> const& points)
284 size_t sz = points.size();
286 THROW_RANGEERROR("fitting error: too few points passed");
289 _center = points[0] * 0.5 + points[1] * 0.5;
290 _radius = distance(points[0], points[1]) / 2;
298 fitter.append(points[i]);