Python Forum
full pyopengl tutorial ? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: full pyopengl tutorial ? (/thread-2482.html)



full pyopengl tutorial ? - hsunteik - Mar-21-2017

i already know the basic,such as creating window,changing window title , set window icon,setting perspective and drawing object and lastly manipulating object.
But i need a pyopengl tutorial that teach me about lighting and camera and many more opengl things that i dont know yet.
is there a pyopengl tutorial that is full and complete?


RE: full pyopengl tutorial ? - wavic - Mar-21-2017

http://pyopengl.sourceforge.net/documentation/


RE: full pyopengl tutorial ? - hsunteik - Mar-21-2017

isnt this the documentation?
where is the tutorial?


RE: full pyopengl tutorial ? - Larz60+ - Mar-21-2017

The best open Gl tutorial is Jason McKesson's. The code is written in C, but parts have been converted by Mekire (on this forun)
the link to his code is: https://github.com/Mekire/gltut-pygame

The original Text (Of McKeeson's book with C code) is here: https://www.docdroid.net/UKocmTz/arcsynthesis.pdf.html


RE: full pyopengl tutorial ? - j.crater - Mar-21-2017

Arcsynthesis was a great website. Good thing we have the PDFs and site snapshots: http://web.archive.org/web/20140209181347/http://www.arcsynthesis.org/gltut/
It is offtopic (or offPython), but for anyone interested, there is a good and relatively new resource: https://learnopengl.com/
And Anton's book about OpenGL basics is highly praised in online communities, but I didn't check it out myself yet: http://antongerdelan.net/opengl/
Sources are focused on modern (core) OpenGL.


RE: full pyopengl tutorial ? - hsunteik - Mar-21-2017

Thanks j.creator,Larz60+,wavic
Thanks mekire for converting the tutorial to python.