in reply to Creating a circle in a data structure
Instead of going round the circle, it may be easier to iterate over all values in one direction, i.e. something like:
foreach $ydist ( 0..$radius ) { # using the formula: # xdist*xdist + ydist*ydist = radius*radius $xdist = int(sqrt( $radius*$radius - $ydist*$ydist)); # Take advantage of symmetry to plot 4 points at once # (for circle outline) $circle{$x_center-$xdist}{$y_center-$ydist}++; $circle{$x_center+$xdist}{$y_center-$ydist}++; $circle{$x_center-$xdist}{$y_center+$ydist}++; $circle{$x_center+$xdist}{$y_center+$ydist}++; # Or to fill up the whole disc... foreach $x ( $x_center-$xdist .. $x_center+$xdist ) { $circle{$x}{$y_center-$ydist}++; $circle{$x}{$y_center+$ydist}++; } }
Of course this assumes you're dealing with a grid of integers. Right now it also counts every point on the axis twice but that's easy enough to fix.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Creating a circle in a data structure
by Skeeve (Parson) on May 28, 2007 at 08:08 UTC | |
Re^2: Creating a circle in a data structure
by AK108 (Friar) on May 28, 2007 at 20:17 UTC | |
by Crackers2 (Parson) on May 29, 2007 at 03:08 UTC |