Lines Matching refs:max
55 Geom::Point max(item_box->max() + .5*gap);
57 // the bounding box (in either X or Y direction, or both); min will have become max
60 // That's why we will enforce some boundaries on min and max here:
61 if (max[X] < min[X]) {
62 min[X] = max[X] = (min[X] + max[X])/2;
64 if (max[Y] < min[Y]) {
65 min[Y] = max[Y] = (min[Y] + max[Y])/2;
67 Rectangle *vspc_rect = new Rectangle(min[X], max[X], min[Y], max[Y]);