fix crashes reported by Debian Cylab Mayhem Team
[swftools.git] / lib / art / art_rect_svp.c
blobd9819963a9a4800a0bce9ba5d40de39973804cd6
1 /* Libart_LGPL - library of basic graphic primitives
2 * Copyright (C) 1998 Raph Levien
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #include "config.h"
21 #include "art_rect_svp.h"
23 #include "art_misc.h"
24 #include "art_svp.h"
25 #include "art_rect.h"
27 #ifndef MAX
28 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
29 #endif /* MAX */
31 #ifndef MIN
32 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
33 #endif /* MIN */
35 /**
36 * art_drect_svp: Find the bounding box of a sorted vector path.
37 * @bbox: Where to store the bounding box.
38 * @svp: The SVP.
40 * Finds the bounding box of the SVP.
41 **/
42 void
43 art_drect_svp (ArtDRect *bbox, const ArtSVP *svp)
45 int i;
47 if (svp->n_segs == 0)
49 bbox->x0 = 0;
50 bbox->y0 = 0;
51 bbox->x1 = 0;
52 bbox->y1 = 0;
53 return;
56 art_drect_copy (bbox, &svp->segs[0].bbox);
58 for (i = 1; i < svp->n_segs; i++)
60 bbox->x0 = MIN (bbox->x0, svp->segs[i].bbox.x0);
61 bbox->y0 = MIN (bbox->y0, svp->segs[i].bbox.y0);
62 bbox->x1 = MAX (bbox->x1, svp->segs[i].bbox.x1);
63 bbox->y1 = MAX (bbox->y1, svp->segs[i].bbox.y1);
67 /**
68 * art_drect_svp_union: Compute the bounding box of the svp and union it in to the existing bounding box.
69 * @bbox: Initial boundin box and where to store the bounding box.
70 * @svp: The SVP.
72 * Finds the bounding box of the SVP, computing its union with an
73 * existing bbox.
74 **/
75 void
76 art_drect_svp_union (ArtDRect *bbox, const ArtSVP *svp)
78 ArtDRect svp_bbox;
80 art_drect_svp (&svp_bbox, svp);
81 art_drect_union (bbox, bbox, &svp_bbox);