[gtk/get-stroke-bounds] Add gsk_path_get_stroke_bounds
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/get-stroke-bounds] Add gsk_path_get_stroke_bounds
- Date: Sun, 6 Dec 2020 01:33:31 +0000 (UTC)
commit 5daa14437529430a97bf3f7051508725764d13de
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Dec 5 19:23:33 2020 -0500
Add gsk_path_get_stroke_bounds
A relatively cheap way to get bounds for the area
that would be affected by stroking a path.
gsk/gskcontour.c | 70 ++++++++++++++++++++++++++++++++++++++++++++++---
gsk/gskcontourprivate.h | 3 +++
gsk/gskpath.c | 50 +++++++++++++++++++++++++++++++++++
gsk/gskpath.h | 5 ++++
4 files changed, 125 insertions(+), 3 deletions(-)
---
diff --git a/gsk/gskcontour.c b/gsk/gskcontour.c
index 359356d838..8ba71b3dd3 100644
--- a/gsk/gskcontour.c
+++ b/gsk/gskcontour.c
@@ -80,6 +80,9 @@ struct _GskContourClass
gpointer measure_data,
const graphene_point_t *point,
gboolean *on_edge);
+ gboolean (* get_stroke_bounds) (const GskContour *contour,
+ GskStroke *stroke,
+ graphene_rect_t *bounds);
};
static gsize
@@ -468,6 +471,17 @@ gsk_rect_contour_get_winding (const GskContour *contour,
return 0;
}
+static gboolean
+gsk_rect_contour_get_stroke_bounds (const GskContour *contour,
+ GskStroke *stroke,
+ graphene_rect_t *bounds)
+{
+ const GskRectContour *self = (const GskRectContour *) contour;
+ graphene_rect_init (bounds, self->x, self->y, self->width, self->height);
+ graphene_rect_inset (bounds, - stroke->line_width / 2, - stroke->line_width / 2);
+ return TRUE;
+}
+
static const GskContourClass GSK_RECT_CONTOUR_CLASS =
{
sizeof (GskRectContour),
@@ -484,7 +498,8 @@ static const GskContourClass GSK_RECT_CONTOUR_CLASS =
gsk_rect_contour_get_closest_point,
gsk_rect_contour_copy,
gsk_rect_contour_add_segment,
- gsk_rect_contour_get_winding
+ gsk_rect_contour_get_winding,
+ gsk_rect_contour_get_stroke_bounds
};
GskContour *
@@ -817,6 +832,23 @@ gsk_circle_contour_get_winding (const GskContour *contour,
return 0;
}
+static gboolean
+gsk_circle_contour_get_stroke_bounds (const GskContour *contour,
+ GskStroke *stroke,
+ graphene_rect_t *bounds)
+{
+ const GskCircleContour *self = (const GskCircleContour *) contour;
+
+ graphene_rect_init (bounds,
+ self->center.x - self->radius,
+ self->center.y - self->radius,
+ 2 * self->radius,
+ 2 * self->radius);
+ graphene_rect_inset (bounds, - stroke->line_width / 2, - stroke->line_width / 2);
+
+ return TRUE;
+}
+
static const GskContourClass GSK_CIRCLE_CONTOUR_CLASS =
{
sizeof (GskCircleContour),
@@ -833,7 +865,8 @@ static const GskContourClass GSK_CIRCLE_CONTOUR_CLASS =
gsk_circle_contour_get_closest_point,
gsk_circle_contour_copy,
gsk_circle_contour_add_segment,
- gsk_circle_contour_get_winding
+ gsk_circle_contour_get_winding,
+ gsk_circle_contour_get_stroke_bounds
};
GskContour *
@@ -1596,6 +1629,28 @@ gsk_standard_contour_get_winding (const GskContour *contour,
return winding;
}
+static gboolean
+gsk_standard_contour_get_stroke_bounds (const GskContour *contour,
+ GskStroke *stroke,
+ graphene_rect_t *bounds)
+{
+ GskStandardContour *self = (GskStandardContour *) contour;
+ struct {
+ GskStroke *stroke;
+ graphene_rect_t *bounds;
+ } data;
+ float mw = MAX (stroke->miter_limit, 0.5) * stroke->line_width;
+
+ data.stroke = stroke;
+ data.bounds = bounds;
+
+ graphene_rect_init (bounds, self->points[0].x - mw/2, self->points[0].y - mw/2, mw, mw);
+
+ gsk_standard_contour_foreach (contour, GSK_PATH_TOLERANCE_DEFAULT, add_stroke_bounds, &data);
+
+ return TRUE;
+}
+
static const GskContourClass GSK_STANDARD_CONTOUR_CLASS =
{
sizeof (GskStandardContour),
@@ -1612,7 +1667,8 @@ static const GskContourClass GSK_STANDARD_CONTOUR_CLASS =
gsk_standard_contour_get_closest_point,
gsk_standard_contour_copy,
gsk_standard_contour_add_segment,
- gsk_standard_contour_get_winding
+ gsk_standard_contour_get_winding,
+ gsk_standard_contour_get_stroke_bounds
};
/* You must ensure the contour has enough size allocated,
@@ -1775,6 +1831,14 @@ gsk_contour_get_winding (const GskContour *self,
return self->klass->get_winding (self, measure_data, point, on_edge);
}
+gboolean
+gsk_contour_get_stroke_bounds (const GskContour *self,
+ GskStroke *stroke,
+ graphene_rect_t *bounds)
+{
+ return self->klass->get_stroke_bounds (self, stroke, bounds);
+}
+
void
gsk_contour_copy (GskContour *dest,
const GskContour *src)
diff --git a/gsk/gskcontourprivate.h b/gsk/gskcontourprivate.h
index bce0689d17..4905038f2c 100644
--- a/gsk/gskcontourprivate.h
+++ b/gsk/gskcontourprivate.h
@@ -92,6 +92,9 @@ void gsk_contour_add_segment (const GskContou
gpointer measure_data,
float start,
float end);
+gboolean gsk_contour_get_stroke_bounds (const GskContour *self,
+ GskStroke *stroke,
+ graphene_rect_t *bounds);
G_END_DECLS
diff --git a/gsk/gskpath.c b/gsk/gskpath.c
index 9e9dac1023..34214be8b8 100644
--- a/gsk/gskpath.c
+++ b/gsk/gskpath.c
@@ -1160,3 +1160,53 @@ error:
return NULL;
}
+
+/**
+ * gsk_path_get_stroke_bounds:
+ * @self: a #GtkPath
+ * @stroke: stroke parameters
+ * @bounds: (out) (caller-allocates): the bounds to fill in
+ *
+ * Computes the bounds for stroking the given path with the
+ * parameters in @stroke.
+ *
+ * The returned bounds may be larger than necessary, because this
+ * function aims to be fast, not accurate. The bounds are guaranteed
+ * to contain the area affected by the stroke, including protrusions
+ * like miters.
+ *
+ * Returns: %TRUE if the path has bounds, %FALSE if the path is known
+ * to be empty and have no bounds.
+ */
+gboolean
+gsk_path_get_stroke_bounds (GskPath *self,
+ GskStroke *stroke,
+ graphene_rect_t *bounds)
+{
+ gsize i;
+
+ g_return_val_if_fail (self != NULL, FALSE);
+ g_return_val_if_fail (bounds != NULL, FALSE);
+
+ for (i = 0; i < self->n_contours; i++)
+ {
+ if (gsk_contour_get_stroke_bounds (self->contours[i], stroke, bounds))
+ break;
+ }
+
+ if (i >= self->n_contours)
+ {
+ graphene_rect_init_from_rect (bounds, graphene_rect_zero ());
+ return FALSE;
+ }
+
+ for (i++; i < self->n_contours; i++)
+ {
+ graphene_rect_t tmp;
+
+ if (gsk_contour_get_stroke_bounds (self->contours[i], stroke, &tmp))
+ graphene_rect_union (bounds, &tmp, bounds);
+ }
+
+ return TRUE;
+}
diff --git a/gsk/gskpath.h b/gsk/gskpath.h
index 31f4cd10e9..51405f7e5d 100644
--- a/gsk/gskpath.h
+++ b/gsk/gskpath.h
@@ -106,6 +106,11 @@ gboolean gsk_path_foreach (GskPath
GskPathForeachFunc func,
gpointer user_data);
+GDK_AVAILABLE_IN_ALL
+gboolean gsk_path_get_stroke_bounds (GskPath *path,
+ GskStroke *stroke,
+ graphene_rect_t *bounds);
+
G_END_DECLS
#endif /* __GSK_PATH_H__ */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]