What is the simplest (and easiest, although that's subjective) algorithm for drawing solid (as in a single, solid color--no texture mapping) 2D polygons in memory? What is the most efficient method?

I am not interested in using the GPU or any rendering method, as the output of my program will not be to the screen.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

The Polygon Fill Teaching Tool will show you a very nice, simple algorithm for drawing filled polygons of any complexity.

I've implemented it for embedded graphics, and it's actually a neat (and fun!) algorithm.

link|improve this answer
I got it to work after a minor tweak. Thanks. – Sydius Dec 11 '08 at 19:05
More than happy to help! Care to explain the minor tweak? – Adam Davis Dec 15 '08 at 20:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.