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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user