The tesselation tag has no wiki summary.
0
votes
1answer
26 views
Phong Shading vs Tessellation
I ran across Phong Shading while looking at the Source Engine. The desription sounds very much like Tessellation. But when I looked it up, I didn't really find anything directly comparing the two. Now ...
1
vote
1answer
42 views
Triangulate a quad with a hole in it using tessellation
Is it possible to triangulate a quad with a hole in it using tesselation shader? For example,
Imagine I have a Quad.
Then I want to make a hole to the center of the quad.
There need to be a lot ...
0
votes
0answers
20 views
Delaunay triangulation of texture to vertex color
I've read article about very good usage of vertex colors. It describes a technique to convert bitmap to a tessellated sphere with vertex colors to be used as a skybox. Here is a link: ...
2
votes
1answer
331 views
What is the algorithm behind the gluTess functions?
I'm asking this question out of curiosity, having first tried to implement such an algorithm before using GLU's for performance reasons.
I've looked into common algorithms (Delaunay, Ear Clipping are ...
3
votes
1answer
116 views
Is it OK to use GLUTesselator in DirectX?
Related questions: 1, 2
In my OpenGL project I use GLUTesselator to split concave polygons (which comes from external source) to triangles, which are fed to OpenGL through VBO after that. Now I'm ...
1
vote
1answer
253 views
Force GLUtesselator to generate only GL_TRIANGLES?
It's pretty hard to render the data I generate, if I want to use one vertex array format only.
I tried to provide GLU_TESS_EDGE_FLAG_DATA callback, but it made my program crash. (also tried without ...
3
votes
1answer
174 views
Why using triangulation for flat terrain?
I've seen many terrains in wire mode and all of them used triangles. I get it if you use it for different heights BUT why do people use so many triangles for flat areas in their terrain? If there is a ...
1
vote
0answers
151 views
GLUtesselator : Issues with zero-area triangles and T-intersections
I came across this issue when I was trying to triangulate Text entities using GLUtesselator. However, it can occur during triangulation of any polygon using GLUtesselator. The problem is that ...
1
vote
2answers
123 views
Which is faster: creating a detailed mesh before execution or tessellating?
For simplicity of the problem let's consider spheres. Let's say I have a sphere, and before execution I know the radius, the position and the triangle count. Let's also say the triangle count is ...
1
vote
2answers
508 views
tessellating a sphere using triangles of different colors
I am writing a function to generate a sphere using triangles to tessellate it, but what I want is for the triangles to all have different colors. However, when I run the code, it creates a sphere but ...
1
vote
2answers
570 views
Is there a way to force GLUtessellator to use GL_TRIANGLES only?
I'm trying to use GLUtesselator to produce 3D extruded text in OpenGL. Here is the relevant code:
private boolean createText(final String displayText)
{
final Font font = new Font("Times New ...
1
vote
1answer
363 views
Why is gluTess not working on first call?
I am using the gluTess* functions to draw non-convex polygons. To avoid redoing the tesselation at every step, I store the result in an array and use the vertex array capabilities of OpenGL to draw.
...
9
votes
1answer
714 views
plotting and coloring data on irregular grid
I have data in the form (x, y, z) where x and y are not on a regular grid. I wish to display a 2D colormap of these data, with intensity (say, grey scale) mapped to the z variable. An obvious solution ...
1
vote
2answers
879 views
I have an OpenGL Tessellated Sphere and I want to cut a cylindrical hole in it
I am working on a piece of software which generated a polygon mesh to represent a sphere, and I want to cut a hole through the sphere. This polygon mesh is only an overlay across the surface of the ...
0
votes
1answer
416 views
GLU Tesselator says: “Need combine callback” But I defined a callback
I registered a CALLBACK using:
gluTessCallback(tess, GLU_TESS_COMBINE, (GLvoid(*)()) &scbCombine);
Where scbCombine is a function directly in the same .cpp file:
void CALLBACK scbCombine(const ...
4
votes
1answer
1k views
GLUTesselator for realtime tesselation?
I'm trying to make a vector drawing application using OpenGL which will allow the user to see the result in real time. The way I have it set up is with an edge flag callback so the glu tesselator only ...
2
votes
1answer
262 views
API's similar to GLUTesselator?
I'm looking for an API that is open sourced and that can take contours of verticies as input and return verticies of triangles. I would also like it to support different winding rules. Thanks
7
votes
2answers
1k views
Efficient Packing Algorithm for Irregular Polygons
I'm looking for a packing algorithm which will reduce an irregular polygon into rectangles and right triangles. The algorithm should attempt to use as few such shapes as possible and should be ...
7
votes
3answers
2k views
Efficient Packing Algorithm for Regular Polygons
I'm looking for a packing algorithm which will reduce a regular polygon into rectangles and right triangles. The algorithm should attempt to use as few such shapes as possible and should be relatively ...
0
votes
1answer
342 views
Attempting to find a formula for tessellating rectangles onto a board, where middle square can't be used
I'm working on a spatial stacking problem... at the moment I'm trying to solve in 2D but will eventually have to make this work in 3D.
I divide up space into n x n squares around a central block, ...
5
votes
3answers
1k views
Tessellating an arbitrary polygon by tiling triangles
I need to fill an arbitrary polygon using a near-uniform tiling of triangles. How would I do this? You may provide either references to existing algorithms or even simply ideas or hints of your own.
...
0
votes
3answers
600 views
Triangulated Irregular Networks from qhull
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!
3
votes
1answer
628 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 in a wikipedia page. ...
1
vote
1answer
515 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 online resources that ...
5
votes
6answers
5k 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, preferably into fairly evenly sized pieces, and with no "slivers".
I'm going ...
6
votes
2answers
1k 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 is aligned to ...
18
votes
9answers
7k 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 if anyone has any ...
