diff options
author | Tor Andersson <tor@ghostscript.com> | 2009-11-29 04:40:31 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2009-11-29 04:40:31 +0100 |
commit | 2c080e248a47cb94d2069f6523c314d039f70919 (patch) | |
tree | 46180621f350edfb63ac578a04125dcd9db31f9d /fitzdraw/pathstroke.c | |
parent | af27ce7576c323665bb9986fbbab63acb6c81c17 (diff) | |
download | mupdf-2c080e248a47cb94d2069f6523c314d039f70919.tar.xz |
Fix up indentation.
Diffstat (limited to 'fitzdraw/pathstroke.c')
-rw-r--r-- | fitzdraw/pathstroke.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fitzdraw/pathstroke.c b/fitzdraw/pathstroke.c index 94409789..13e70dd4 100644 --- a/fitzdraw/pathstroke.c +++ b/fitzdraw/pathstroke.c @@ -38,9 +38,9 @@ line(struct sctx *s, float x0, float y0, float x1, float y1) static fz_error arc(struct sctx *s, - float xc, float yc, - float x0, float y0, - float x1, float y1) + float xc, float yc, + float x0, float y0, + float x1, float y1) { fz_error error; float th0, th1, r; @@ -255,17 +255,17 @@ linecap(struct sctx *s, fz_point a, fz_point b) if (linecap == SQUARE) { error = line(s, b.x - dlx, b.y - dly, - b.x - dlx - dly, - b.y - dly + dlx); + b.x - dlx - dly, + b.y - dly + dlx); if (error) return error; error = line(s, b.x - dlx - dly, - b.y - dly + dlx, - b.x + dlx - dly, - b.y + dly + dlx); + b.y - dly + dlx, + b.x + dlx - dly, + b.y + dly + dlx); if (error) return error; error = line(s, b.x + dlx - dly, - b.y + dly + dlx, - b.x + dlx, b.y + dly); + b.y + dly + dlx, + b.x + dlx, b.y + dly); if (error) return error; } |