Lines Matching defs:pts
774 DDXPointPtr pts;
793 pts = points;
807 pts->x = xorg;
808 pts->y = yorgu - 1;
809 pts++;
814 pts[0].x = xorg + span->lx;
815 pts[0].y = yorgu;
817 pts[1].x = pts[0].x;
818 pts[1].y = yorgl;
822 pts += 2;
827 pts[0].x = xorg;
828 pts[0].y = yorgl;
830 pts++;
834 pts[0].x = xorg + span->lx;
835 pts[0].y = yorgu;
837 pts[1].x = xorg + span->rx;
838 pts[1].y = pts[0].y;
840 pts[2].x = pts[0].x;
841 pts[2].y = yorgl;
843 pts[3].x = pts[1].x;
844 pts[3].y = pts[2].y;
848 pts += 4;
854 pts[0].x = xorg + span->lx;
855 pts[0].y = yorgu;
857 pts++;
861 pts[0].x = xorg + span->lx;
862 pts[0].y = yorgu;
864 pts[1].x = xorg + span->rx;
865 pts[1].y = pts[0].y;
867 pts += 2;
872 (*pGC->ops->FillSpans) (pDraw, pGC, pts - points, points, widths, FALSE);
1123 GetFPolyYBounds(SppPointPtr pts, int n, double yFtrans, int *by, int *ty)
1127 SppPointPtr ptsStart = pts;
1129 ptMin = pts;
1130 ymin = ymax = (pts++)->y;
1133 if (pts->y < ymin) {
1134 ptMin = pts;
1135 ymin = pts->y;
1137 if (pts->y > ymax)
1138 ymax = pts->y;
1140 pts++;