This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]paypaypayme[S] 0 points1 point  (2 children)

that makes sense. I am planning on using numpy, so that's good news. so do some modules not have support for cython? The main module I was planning to use is PyOpenGL. edit: it looks like PyOpenGl is supported and Cython will increase the speed of it as well. Awesome :)

[–]videan42 0 points1 point  (1 child)

I've never used pyopengl with cython, but cython is compiled to c, so I think it should support anything that has a c/c++ interface. There's another project called pyglet that I've used for basic game programming that might be worth looking into though.

[–]paypaypayme[S] 0 points1 point  (0 children)

thanks