Lines Matching defs:best
203 geom_line_wind_distance (Geom::Coord x0, Geom::Coord y0, Geom::Coord x1, Geom::Coord y1, Geom::Point const &pt, int *wind, Geom::Coord *best)
218 if (best) {
231 if (dist2 < (*best * *best)) *best = sqrt (dist2);
264 Geom::Rect *bbox, int *wind, Geom::Coord *best,
291 if (best) {
294 if (len2 < (*best * *best)) *best = (Geom::Coord) sqrt (len2);
296 if (len2 < (*best * *best)) *best = (Geom::Coord) sqrt (len2);
298 if (((x0 - Px) < *best) && ((y0 - Py) < *best) && ((Px - x1) < *best) && ((Py - y1) < *best)) {
340 geom_cubic_bbox_wind_distance (x000, y000, x00t, y00t, x0tt, y0tt, xttt, yttt, pt, NULL, wind, best, tolerance);
341 geom_cubic_bbox_wind_distance (xttt, yttt, x1tt, y1tt, x11t, y11t, x111, y111, pt, NULL, wind, best, tolerance);
343 geom_line_wind_distance (x000, y000, x111, y111, pt, wind, best);