Tagged Questions
A triangle strip is a series of connected triangles, sharing vertices, allowing for faster rendering and more efficient memory usage for computer graphics. In OpenGL implementation, GL_TRIANGLE_STRIP draws a series of triangles using vertices v0, v1, v2, then v2, v1, v3 (note the order), then v2, v3, v4, and so on. The ordering is to ensure that the triangles are all drawn with the same orientation so that the strip can correctly form part of a surface
4
votes
2answers
452 views
OpenGL: Problem with triangle strips for 3d mesh and normals
I'm new to opengl programing. I'm currently making animation of cave shaft formation. I have a set of coordinats for profiles of the shaft along the z-axis. My plan is to make a 3d mesh from this data
...
3
votes
3answers
772 views
Generate a plane with triangle strips
What would be the best algorithm to generate a list of vertices to draw a plane using triangle strips?
I'm looking for a function which receives the plane's width and height and returns a float array ...
3
votes
1answer
392 views
Problem with degenerate triangles and GL_TRIANGLE_STRIP
I'm trying to draw multiple triangle strips with only one call to glDrawElements and my research on the matter tells me I need to use degenerate triangles. Maybe my understanding on the subject is ...
2
votes
1answer
68 views
Polygon triangulation into triangle strips for OpenGL ES
I am looking for a fast polygon triangulation algorithm that can triangulate not very complex 2D concave polygons (without holes) into triangle strips ready to be sent to OpenGL ES for drawing using ...
1
vote
2answers
90 views
Help getting vertex indices from a grid
I'm folloing this little tutorial on how to get indices from a grid to build a GL_TRIANGLE_STRIP mesh http://dan.lecocq.us/wordpress/2009/12/25/triangle-strip-for-grids-a-construction/
I'm getting ...
0
votes
1answer
197 views
How to draw cube without indices?OpenGL ES 2.0
I want to draw cube without indices and using VBO. I can't find anything in internet(tutorials,examples).
What I tried:
const GLfloat Vertices[] = {
-1.0f, -1.0f, 1.0f, //Vertex 0
1.0f, ...