How do I draw a cylinder with OpenTK OpenGL
feedback
|
|
Sample code from an older project of mine. This creates an "uncapped" cylinder (top and bottom are empty).
You can now render the cylinder like this:
You can also upload vertices and indices into a vertex buffer object to improve performance. | |||
|
feedback
|
|
Generating the geometry for a cylinder is quite simple (let's consider a Z-aligned cylinder). Let me use pseudocode:
About the indices: Let us assume The cylinder contains some quads, each spanning 2 neighbouring slices, so the indices would look like:
If you need normals for the cylinder, they are simple to generate:
That's it for the round part of the cylinder, you might also want the "caps" but I believe they are easy to do. I'll leave the fun part of translating my pseudocode into your language of choice for you. :) The rest is to create/bind the VBO, load up the geometry, set pointers, use your shader of choice and call glDrawArrays(...) - any OpenGL 3 tutorial should cover this; are you familiar with that part? | |||||||
feedback
|