Lines Matching defs:pts
57 static int getPolyYBounds(DDXPointPtr pts, int n, int *by, int *ty);
224 getPolyYBounds(DDXPointPtr pts, int n, int *by, int *ty)
228 DDXPointPtr ptsStart = pts;
230 ptMin = pts;
231 ymin = ymax = (pts++)->y;
234 if (pts->y < ymin)
236 ptMin = pts;
237 ymin = pts->y;
239 if(pts->y > ymax)
240 ymax = pts->y;
242 pts++;