Tagged Questions

6
votes
1answer
274 views

Splitting a rectangular image to polygons to simulate Breaking glass

I am working on some C# code in which I would like to take a 2D rectangle and split it to smaller 2D polygons. I would like the effect to look like the rectangle was made of glass and it was hit with ...
4
votes
1answer
293 views

CUDA efficient polygons fill algorithm

I need efficient fill algorithm to fill closed polygons (like ex. Scanline fill), which I can run on CUDA. Have you got any suggestions? Thanks in advance for any replays!
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? ...
3
votes
3answers
125 views

Union of many (more than two) polygons without holes

Im creating union of polygons without holes. Input polygons are without holes and also output one should be. I already have working algorithm for finding it for two polygons. But in case of more than ...
1
vote
3answers
305 views

Intersection between 3D flat polygons

How to find intersections between two (or more) 3D planar polygons (for the simplest case they are all convex)? Seeking algorithms able to provide the intersection line if there is any. Note the ...