Browsing index pages (2 articles)
↧
pyOpenGL won't work
i want to make a 3d rotating cube using pygame and pyopengl after watching a tutorial on Youtube but i keep getting an error. i installed opengl using my terminal.here is the codefrom OpenGL.GL import...
View ArticleAnswer by Schore for pyOpenGL won't work
DOUBLEBUF is defined in pygame, so you have to write:pygame.DOUBLEBUFYou could also change your import to:from pygame import *
View Article
Browsing index pages (2 articles)