summaryrefslogtreecommitdiff
path: root/fitz/base_geometry.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-07-17 12:30:22 +0000
committerTor Andersson <tor@ghostscript.com>2010-07-17 12:30:22 +0000
commitf23227839ea5afeed361611dcaf01784b2f791e3 (patch)
tree30870ba1fc7e574ab2e14545caa9d9f03f97ef58 /fitz/base_geometry.c
parent5de6910dd12025185e15fb483d5047c399212423 (diff)
downloadmupdf-f23227839ea5afeed361611dcaf01784b2f791e3.tar.xz
Minor edits of multi-line comments.
Diffstat (limited to 'fitz/base_geometry.c')
-rw-r--r--fitz/base_geometry.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/fitz/base_geometry.c b/fitz/base_geometry.c
index 61ff88d9..924ae4a7 100644
--- a/fitz/base_geometry.c
+++ b/fitz/base_geometry.c
@@ -3,9 +3,7 @@
#define MAX4(a,b,c,d) MAX(MAX(a,b), MAX(c,d))
#define MIN4(a,b,c,d) MIN(MIN(a,b), MIN(c,d))
-/*
- * Matrices, points and affine transformations
- */
+/* Matrices, points and affine transformations */
const fz_matrix fz_identity = { 1, 0, 0, 1, 0, 0 };
@@ -131,9 +129,7 @@ fz_transformvector(fz_matrix m, fz_point p)
return t;
}
-/*
- * Rectangles and bounding boxes
- */
+/* Rectangles and bounding boxes */
const fz_rect fz_infiniterect = { 1, 1, -1, -1 };
const fz_rect fz_emptyrect = { 0, 0, 0, 0 };