From: nicolas Date: Wed, 2 Feb 2011 00:20:55 +0000 (+0000) Subject: distort comment typos X-Git-Tag: 7.0.1-0~8242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26838d9b0d3f1262cede93761297554c65e93784;p=imagemagick distort comment typos --- diff --git a/magick/distort.c b/magick/distort.c index 99a22bbe9..f0ed82334 100644 --- a/magick/distort.c +++ b/magick/distort.c @@ -198,10 +198,10 @@ static const char *poly_basis_str(ssize_t n) switch(n) { case 0: return(""); /* constant */ case 1: return("*ii"); - case 2: return("*jj"); /* affine order = 1 terms = 3 */ - case 3: return("*ii*jj"); /* bilinear order = 1.5 terms = 4 */ + case 2: return("*jj"); /* affine order = 1 terms = 3 */ + case 3: return("*ii*jj"); /* bilinear order = 1.5 terms = 4 */ case 4: return("*ii*ii"); - case 5: return("*jj*jj"); /* quadratic order = 2 terms = 6 */ + case 5: return("*jj*jj"); /* quadratic order = 2 terms = 6 */ case 6: return("*ii*ii*ii"); case 7: return("*ii*ii*jj"); case 8: return("*ii*jj*jj");