From 77513a03106e3fe6c14d9f401b7cd8a7e427451a Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 16 May 2009 21:36:36 +0000 Subject: fix comments git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@922 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/libppmd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libppmd.c') 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); -- cgit 1.4.1