Fixed a cut&paste error it the radius check code

Fixed a cut&paste error it the radius check code
This commit is contained in:
Olof S Kylander/GIMP 1999-09-06 01:15:44 +00:00
parent 204b75938e
commit 7110c063e1
4 changed files with 4 additions and 4 deletions

View File

@ -640,7 +640,7 @@ blob_ellipse (double xc, double yc, double xp, double yp, double xq, double yq)
/* Figure out a step that will draw most of the points */
r1 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xq * xq + yq * yq);
max_radius = MAX (r1, r2);
step = TABLE_SIZE;

View File

@ -640,7 +640,7 @@ blob_ellipse (double xc, double yc, double xp, double yp, double xq, double yq)
/* Figure out a step that will draw most of the points */
r1 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xq * xq + yq * yq);
max_radius = MAX (r1, r2);
step = TABLE_SIZE;

View File

@ -640,7 +640,7 @@ blob_ellipse (double xc, double yc, double xp, double yp, double xq, double yq)
/* Figure out a step that will draw most of the points */
r1 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xq * xq + yq * yq);
max_radius = MAX (r1, r2);
step = TABLE_SIZE;

View File

@ -640,7 +640,7 @@ blob_ellipse (double xc, double yc, double xp, double yp, double xq, double yq)
/* Figure out a step that will draw most of the points */
r1 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xp * xp + yp * yp);
r2 = sqrt (xq * xq + yq * yq);
max_radius = MAX (r1, r2);
step = TABLE_SIZE;