about summary refs log tree commit diff
path: root/lib/libppmd.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2009-05-16 21:36:36 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2009-05-16 21:36:36 +0000
commit77513a03106e3fe6c14d9f401b7cd8a7e427451a (patch)
tree0e6ceded2121e89dc51f51865e05272f19aac921 /lib/libppmd.c
parentc7114f4028d5c6f57e3c8d6ece891c94afc29c63 (diff)
downloadnetpbm-mirror-77513a03106e3fe6c14d9f401b7cd8a7e427451a.tar.gz
netpbm-mirror-77513a03106e3fe6c14d9f401b7cd8a7e427451a.tar.xz
netpbm-mirror-77513a03106e3fe6c14d9f401b7cd8a7e427451a.zip
fix comments
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@922 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib/libppmd.c')
-rw-r--r--lib/libppmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libppmd.c b/lib/libppmd.c
index de207abf..ea5127d5 100644
--- a/lib/libppmd.c
+++ b/lib/libppmd.c
@@ -656,14 +656,14 @@ ppmd_spline3p(pixel **       const pixels,
 
     if (distanceFromLine(ctl, p0, p1) <= splineThresh) {
         /* The control point is pretty close to the straight line that
-           joins the endpoints, so we'll just use a straight line.
+           joins the endpoints, so we'll just draw a straight line.
         */
         ppmd_linep(
             pixels, cols, rows, maxval, p0, p1, drawProc, clientdata);
     } else {
         /* We want some curvature, so pick a point (b) sort of between the
-           two endpoints and the control point and then compute a spline
-           between each of the endpoints and that between point (b):
+           two endpoints and the control point and then draw a spline
+           between each of the endpoints and (b):
         */
         ppmd_point const a = middlePoint(p0, ctl);
         ppmd_point const c = middlePoint(ctl, p1);