Is there a efficient algorithm out there to find the indicies of pixels in a general ellipse?
Essentially, what I want to do is to find the indicies in a two dimensional array that corresponds to a parameterized ellipse that spans over the "2-D surface" of possible array indicies. This problem can, as in my first Q above, be compared to the rasterization of an ellipse.
I have found some Scan Line algorithms that do what I want for axis-aligned ellipses, but now I wonder if there are any similar ones for ellipses that are skewed and rotated. There must be since vector graphics SW out there manage to fill ellipses that are skewed and/or rotated.
To clearify what I mean, I recently had one similar question to this resolved here: Special polygonial for loop in two dimensional array
/Nick