Home | History | Annotate | Download | only in MagickCore

Lines Matching full:bounding_box

188       bounding_box;
201 bounding_box=bounds;
212 if ((x < bounding_box.x) &&
214 bounding_box.x=x;
215 if ((x > (ssize_t) bounding_box.width) &&
217 bounding_box.width=(size_t) x;
218 if ((y < bounding_box.y) &&
220 bounding_box.y=y;
221 if ((y > (ssize_t) bounding_box.height) &&
223 bounding_box.height=(size_t) y;
230 if (bounding_box.x < bounds.x)
231 bounds.x=bounding_box.x;
232 if (bounding_box.y < bounds.y)
233 bounds.y=bounding_box.y;
234 if (bounding_box.width > bounds.width)
235 bounds.width=bounding_box.width;
236 if (bounding_box.height > bounds.height)
237 bounds.height=bounding_box.height;