in reply to Re^2: 3d for Perl?
in thread 3d for Perl?

Yes, its why they were mentioned.
http://search.cpan.org/src/BFREE/OpenGL-0.56/examples/tk_demo
http://search.cpan.org/src/BFREE/OpenGL-0.56/examples/tk_steal

Replies are listed 'Best First'.
Re^4: 3d for Perl?
by zentara (Cardinal) on Oct 22, 2007 at 11:36 UTC
    Anyone know where you can get the tarball for this OpenGL-0.56? It dosn't show up in a cpan search.

    I'm not really a human, but I play one on earth. Cogito ergo sum a bum
      http://graphcomp.com/opengl/

      If you search for "POGL", you'll find more information.

      Warning: OpenGL.pm is not straightforward to get working on many platforms. OpenGL::Simple is much easier, but more limited in functionality. The functionality it provides is a bit easier to use (it maps OpenGL calls into Perl semantics to a slight degree, so you can do glVector($a,$b,$c) instead of glVector3f($a,$b,$c); it figures out whether to call glVector3f or glVector3i or ...)