Search code examples
javaopengljoglnurbs

Does JOGL support NURBS?


I have made some researches on nurbs in jogl, but unfortunately did not get appropriate result for it, and I have doubt that jogl does not support nurbs? If jogl supports, can anyone guide me to examples or literature please?


Solution

  • You can find some information about GLU (which contains the Nurbs features) and JOGL here in the paragraph entitled "GLU". By default, JOGL uses its own Java GLU implementation but you can use the native GLU implementation by using the system property -Djogl.glu.nojava. The former is available on much more platforms and more stable but its NURBS support isn't 100% complete whereas the latter is absent of some platforms and buggy on some others but it provides a better NURBS support.

    You can find some working examples here. Please use our official forum to ask JOGL specific questions as only a few maintainers are on StackOverflow.