Tagged Questions

4
votes
1answer
2k views

Good algorithm for drawing solid 2-dimensional polygons?

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? ...
2
votes
1answer
149 views

checking intersection of many (small) polygons against one (large) polygon by filling with rectangles?

I have a 2D computational geometry / GIS problem that I think should be common and I'm hoping to find some existing code/library to use. The problem is to check which subset of a big set (thousands) ...
0
votes
1answer
191 views

overlapping polygons in html5 canvas

I'm trying to render simple 3d shapes (in this particular case, a cube) in a html5 canvas. Translating 3d points to a 2d plane was easy enough, so I went ahead and starting coloring the polygons. They ...