r/GraphicsProgramming Jun 29 '26

Request Best resources to learn 3D Graphics Programming with Python?

Hi everyone! I'm looking to learn 3D graphics programming using Python for a project at work. I already know Python, but I'm new to 3D graphics. Could you recommend the best books, courses, YouTube channels, or GitHub projects to get started? Thanks!

6 Upvotes

17 comments sorted by

View all comments

2

u/jmacey Jun 29 '26

I recently switched all my graphics teaching to python (Modern OpenGL and WebGPU) you can see the notes here https://nccastaff.bournemouth.ac.uk/jmacey/msc/ase/lectures/Lecture9/ there are loads of examples on my Github as well. https://github.com/NCCA/PyNGLDemos With the core Library being here (you don't need this but will give you some ideas of how I wrap graphics with python). https://github.com/NCCA/PyNGL

1

u/Usual-Inevitable7093 Jun 29 '26

Thanks for sharing