Tagged Questions

0
votes
3answers
26 views

Triangulated Irregular Networks from qhull

Hi, I wanted to create TINs from 3D points (about 7 million in every file) using qhull. can anyone suggest a place where i could probably see how to do this? thanks!
1
vote
1answer
108 views

Generic pattern algorithms (language agnostic)

I'm sorry to ask such a vague and generic question, but I need to write a set of tools that will aid people in creating 2D and 3D geometric patterns. Does anyone know any good onl …
1
vote
0answers
48 views

how to tesselate bezier triangles?

My concern are quadratic bezier triangles which I'm trying to tesselate for rendering them. I've managed to implement this by subdividing the triangle recursively like described i …
1
vote
4answers
326 views

c++ 2D tessellation library?

I've got some convex polygons stored as an stl vector of points (more or less). I want to tessellate them really quickly. I'm not very worried about the quality of the mesh -- i.e. …
1
vote
1answer
238 views

Tiling rectangles seamlessly in WPF

I want to seamlessly tile a bunch of different-colored Rectangles in WPF. That is, I want to put a bunch of rectangles edge-to-edge, and not have gaps between them. If everything …
3
votes
6answers
677 views

Covering Earth with Hexagonal Map Tiles

Many strategy games use hexagonal tiles. One of the main advantages is that the distance between the center of any tile and all its neighboring tiles is the same. I was wondering …