CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2008
    Location
    Cologne, Germany
    Posts
    756

    [RESOLVED] What is this quadric object in OpenGL?

    I'm searching and searching and I have no luck... can someone please explain to me what is this quadric object in OpenGL, what it does and why?
    win7 x86, VS 2008 & 2010, C++/CLI, C#, .NET 3.5 & 4.0, VB.NET, VBA... WPF is comming

    remeber to give feedback you think my response deserves recognition? perhaps you may want to click the Rate this post link/button and add to my reputation

    private lessons are not an option so please don't ask for help in private, I won't replay

    if you use Opera and you'd like to have the tab-button functionality for the texteditor take a look at my Opera Tab-UserScirpt; and if you know how to stop firefox from jumping to the next control when you hit tab let me know

  2. #2
    Join Date
    Apr 2009
    Posts
    598

    Re: What is this quadric object in OpenGL?

    The class of quadrics (surfaces that can be defined by a quadratic equation) include spheres, cylinders, cones, ellipsoids, paraboloids, etc.

    With the OpenGL quadric object you can draw spheres, cylinders, cones, ellipsoids, paraboloids, etc.

  3. #3
    Join Date
    Oct 2008
    Location
    Cologne, Germany
    Posts
    756

    Re: What is this quadric object in OpenGL?

    Quote Originally Posted by olivthill2 View Post
    surfaces that can be defined by a quadratic equation
    this seems to be the answer that I was looking for ;]

    I came upon the quadric class as I wanted to draw a cylinder with gluCylinder and the first paramter is a quadric object

    but it's still a little bit illogical to me, why can't the cylinder funciton create this object internally... hmm, I'll try to find the source code, glu is open source, isn't it?

    edit: great, I've finally found, strange, I was srearching all the time for quadric object and found only some pages with tutorials but I changed my strategy and tried to look for glu at wikipedia and then bam! found ;]

    http://en.wikipedia.org/wiki/Quadric
    Last edited by memeloo; June 30th, 2009 at 11:35 AM.
    win7 x86, VS 2008 & 2010, C++/CLI, C#, .NET 3.5 & 4.0, VB.NET, VBA... WPF is comming

    remeber to give feedback you think my response deserves recognition? perhaps you may want to click the Rate this post link/button and add to my reputation

    private lessons are not an option so please don't ask for help in private, I won't replay

    if you use Opera and you'd like to have the tab-button functionality for the texteditor take a look at my Opera Tab-UserScirpt; and if you know how to stop firefox from jumping to the next control when you hit tab let me know

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured