diff options
author | Benjamin Otte <otte@redhat.com> | 2010-10-15 17:00:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:50:00 +0800 |
commit | 6be035b9ff4f9d6c9c5f5b110a77322b7b776606 (patch) | |
tree | c00533fdb0305e61fc668a21cd749f793e98a4fc /libgnomecanvas/gnome-canvas-shape.c | |
parent | 61900647523c854d322ed6a7f79922d7e03c33a0 (diff) | |
download | gsoc2013-evolution-6be035b9ff4f9d6c9c5f5b110a77322b7b776606.tar.gz gsoc2013-evolution-6be035b9ff4f9d6c9c5f5b110a77322b7b776606.tar.zst gsoc2013-evolution-6be035b9ff4f9d6c9c5f5b110a77322b7b776606.zip |
gnome-canvas: Split out matrix_transform_rect code
Diffstat (limited to 'libgnomecanvas/gnome-canvas-shape.c')
-rw-r--r-- | libgnomecanvas/gnome-canvas-shape.c | 45 |
1 files changed, 1 insertions, 44 deletions
diff --git a/libgnomecanvas/gnome-canvas-shape.c b/libgnomecanvas/gnome-canvas-shape.c index f99b10b976..d1ad26ce5b 100644 --- a/libgnomecanvas/gnome-canvas-shape.c +++ b/libgnomecanvas/gnome-canvas-shape.c @@ -488,49 +488,6 @@ gnome_canvas_shape_draw (GnomeCanvasItem *item, } static void -my_cairo_matrix_transform_rectangle (const cairo_matrix_t *matrix, - double *x1, double *y1, double *x2, double *y2) -{ - double maxx, maxy, minx, miny; - double tmpx, tmpy; - - tmpx = *x1; - tmpy = *y1; - cairo_matrix_transform_point (matrix, &tmpx, &tmpy); - minx = maxx = tmpx; - miny = maxy = tmpy; - - tmpx = *x2; - tmpy = *y1; - cairo_matrix_transform_point (matrix, &tmpx, &tmpy); - minx = MIN (minx, tmpx); - maxx = MAX (maxx, tmpx); - miny = MIN (miny, tmpy); - maxy = MAX (maxy, tmpy); - - tmpx = *x2; - tmpy = *y2; - cairo_matrix_transform_point (matrix, &tmpx, &tmpy); - minx = MIN (minx, tmpx); - maxx = MAX (maxx, tmpx); - miny = MIN (miny, tmpy); - maxy = MAX (maxy, tmpy); - - tmpx = *x1; - tmpy = *y2; - cairo_matrix_transform_point (matrix, &tmpx, &tmpy); - minx = MIN (minx, tmpx); - maxx = MAX (maxx, tmpx); - miny = MIN (miny, tmpy); - maxy = MAX (maxy, tmpy); - - *x1 = minx; - *x2 = maxx; - *y1 = miny; - *y2 = maxy; -} - -static void gnome_canvas_shape_bounds (GnomeCanvasItem *item, gdouble *x1, gdouble *y1, gdouble *x2, gdouble *y2) { GnomeCanvasShape * shape; @@ -573,7 +530,7 @@ gnome_canvas_shape_update (GnomeCanvasItem *item, gdouble *affine, ArtSVP *clip_ gnome_canvas_shape_bounds (item, &x1, &x2, &y1, &y2); gnome_canvas_item_i2w_matrix (item, &matrix); - my_cairo_matrix_transform_rectangle (&matrix, &x1, &y1, &x2, &y2); + gnome_canvas_matrix_transform_rect (&matrix, &x1, &y1, &x2, &y2); gnome_canvas_update_bbox (GNOME_CANVAS_ITEM (shape), floor (x1), floor (y1), ceil (x2), ceil (y2)); |