Lines Matching defs:xpoints
42 XPoint *xpoints;
45 xpoints = (XPoint *) malloc ((unsigned)n_points * sizeof (*xpoints));
46 if (!xpoints)
49 xpoints[i].x = Xx(points[i].x + xoff, points[i].y + yoff, t);
50 xpoints[i].y = Xy(points[i].x + xoff, points[i].y + yoff, t);
56 return xpoints;
63 XPoint *xpoints;
65 xpoints = TranslatePoints (points, n_points, t, mode);
66 if (xpoints) {
67 XFillPolygon (dpy, d, gc, xpoints, n_points, shape,
69 free (xpoints);