Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3357606
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:39:10+00:00 2026-05-18T02:39:10+00:00

How do I draw a cylinder with OpenGL in OpenTK?

  • 0

How do I draw a cylinder with OpenGL in OpenTK?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T02:39:11+00:00Added an answer on May 18, 2026 at 2:39 am

    Sample code from an older project of mine. This creates an “uncapped” cylinder (top and bottom are empty).

    int segments = 10; // Higher numbers improve quality 
    int radius = 3;    // The radius (width) of the cylinder
    int height = 10;   // The height of the cylinder
    
    var vertices = new List<Vector3>();
    for (double y = 0; y < 2; y++)
    {
        for (double x = 0; x < segments; x++)  
        {
            double theta = (x / (segments - 1)) * 2 * Math.PI;
    
            vertices.Add(new Vector3()
            {
                X = (float)(radius * Math.Cos(theta)),
                Y = (float)(height * y),
                Z = (float)(radius * Math.Sin(theta)),
            });
        }
    }
    
    var indices = new List<int>();
    for (int x = 0; x < segments - 1; x++)
    {
        indices.Add(x);
        indices.Add(x + segments);
        indices.Add(X + segments + 1);
    
        indices.Add(x + segments + 1);
        indices.Add(x + 1);
        indices.Add(x);
    }
    

    You can now render the cylinder like this:

    GL.Begin(BeginMode.Triangles);
    foreach (int index in indices)
        GL.Vertex3(vertices[index]);
    GL.End();
    

    You can also upload vertices and indices into a vertex buffer object to improve performance.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to draw a cylinder in OpenGl. I found this algorithm but
I just want to draw a cylinder in opengl. I found lots of samples
I want to implement a function with OpenGL to render a cylinder in C++.
To draw a dotted line in OpenGL I can use glLineStipple, but how do
I draw in opengl with RGBA colors these texts (with the color between parenthesis)
i am new opengl learner. i know there is build in function to draw
How do you draw a cylinder with OpenGLES?
I draw several 2D shapes using OpenGL and now I want to add the
I draw a screen with OpenGL commands. And I must save this screen to
I am trying to draw a cylinder, but its not working :( Can you

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.