Lines Matching refs:box
50 miTrapezoidBounds(int ntrap, xTrapezoid * traps, BoxPtr box) in miTrapezoidBounds() argument
52 box->y1 = MAXSHORT; in miTrapezoidBounds()
53 box->y2 = MINSHORT; in miTrapezoidBounds()
54 box->x1 = MAXSHORT; in miTrapezoidBounds()
55 box->x2 = MINSHORT; in miTrapezoidBounds()
62 if (y1 < box->y1) in miTrapezoidBounds()
63 box->y1 = y1; in miTrapezoidBounds()
66 if (y2 > box->y2) in miTrapezoidBounds()
67 box->y2 = y2; in miTrapezoidBounds()
71 if (x1 < box->x1) in miTrapezoidBounds()
72 box->x1 = x1; in miTrapezoidBounds()
78 if (x2 > box->x2) in miTrapezoidBounds()
79 box->x2 = x2; in miTrapezoidBounds()