Home | History | Annotate | Download | only in fxcrt

Lines Matching defs:points

337   CFX_PointF points[] = {
340 points[i] = Transform(points[i]);
342 float new_right = points[0].x;
343 float new_left = points[0].x;
344 float new_top = points[0].y;
345 float new_bottom = points[0].y;
347 new_right = std::max(new_right, points[i].x);
348 new_left = std::min(new_left, points[i].x);
349 new_top = std::max(new_top, points[i].y);
350 new_bottom = std::min(new_bottom, points[i].y);