mirror of https://github.com/GNOME/gimp.git
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:
parent
204b75938e
commit
7110c063e1
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue