summaryrefslogtreecommitdiff
path: root/src/cairo-slope.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2003-10-04 14:34:42 +0000
committerCarl Worth <cworth@cworth.org>2003-10-04 14:34:42 +0000
commit61726a88f24efcbabdff980abdfe1ff8301315b2 (patch)
treeb14a5724e721f01fd4767611e9ef89950f7b7843 /src/cairo-slope.c
parenta249bd717c194d03d480d7803351ee6f21daf0c2 (diff)
downloadcairo-61726a88f24efcbabdff980abdfe1ff8301315b2.tar.gz
Generate convex hull of pen before stroking.
Diffstat (limited to 'src/cairo-slope.c')
-rw-r--r--src/cairo-slope.c40
1 files changed, 38 insertions, 2 deletions
diff --git a/src/cairo-slope.c b/src/cairo-slope.c
index 619ced1db..6d7d682f5 100644
--- a/src/cairo-slope.c
+++ b/src/cairo-slope.c
@@ -34,6 +34,43 @@ _cairo_slope_init (cairo_slope_t *slope, cairo_point_t *a, cairo_point_t *b)
slope->dy = b->y - a->y;
}
+/* Compare two slopes. Slope angles begin at 0 in the direction of the
+ positive X axis and increase in the direction of the positive Y
+ axis.
+
+ WARNING: This function only gives correct results if the angular
+ difference between a and b is less than PI.
+
+ < 0 => a less positive than b
+ == 0 => a equal to be
+ > 0 => a more positive than b
+*/
+int
+_cairo_slope_compare (cairo_slope_t *a, cairo_slope_t *b)
+{
+ cairo_fixed_48_16_t diff;
+
+ diff = ((cairo_fixed_48_16_t) a->dy * (cairo_fixed_48_16_t) b->dx
+ - (cairo_fixed_48_16_t) b->dy * (cairo_fixed_48_16_t) a->dx);
+
+ if (diff > 0)
+ return 1;
+ if (diff < 0)
+ return -1;
+
+ if (a->dx == 0 && a->dy == 0)
+ return 1;
+ if (b->dx == 0 && b->dy ==0)
+ return -1;
+
+ return 0;
+}
+
+/* XXX: It might be cleaner to move away from usage of
+ _cairo_slope_clockwise/_cairo_slope_counter_clockwise in favor of
+ directly using _cairo_slope_compare.
+*/
+
/* Is a clockwise of b?
*
* NOTE: The strict equality here is not significant in and of itself,
@@ -43,8 +80,7 @@ _cairo_slope_init (cairo_slope_t *slope, cairo_point_t *a, cairo_point_t *b)
int
_cairo_slope_clockwise (cairo_slope_t *a, cairo_slope_t *b)
{
- return ((cairo_fixed_48_16_t) b->dy * (cairo_fixed_48_16_t) a->dx
- > (cairo_fixed_48_16_t) a->dy * (cairo_fixed_48_16_t) b->dx);
+ return _cairo_slope_compare (a, b) < 0;
}
int