태그>pyopengl(총 7개의 글)
'pyopengl' 관련 최근글
-
- PyOpenGL - glutCreateWindow에서 wrong type 에러
-
Time To Share by Time To Share|2016/02/19 13:10
pyopengl을 테스트 해보려고 실행했느데 glutCreateWindow("hello opengl")와 같이 초기화 함수에서 에러가 발생했다. Traceback (most recent call last): File "gl_particle_animation.py", line 133, in window = glut_win..
- PyOpenGL - glutCreateWindow에서 wrong type 에러
-
- PyOpenGL을 시작할때 참고해야할 문서
-
Time To Share by Time To Share|2016/01/05 03:17
원문 : 1 IntroductionIf you have never encountered OpenGL, then you might not be aware of the fact that it is an excellent 3D graphics API and an absolute pleasure to work with. One caveat however is that setting up your application t..
- PyOpenGL을 시작할때 참고해야할 문서
-
- PyOpenGL - glutInit 초기화 에러 OpenGL.error.NullFunctionError
-
Time To Share by Time To Share|2016/01/05 01:22
PyOpenGL을 설치하고 glutInit로 초기화하려 할때 에러가 발생하는 경우가 있다.가장 흔한 경우는 windows의 경우 freeglut.dll이 없는 경우인데 freeglut 사이트를 방문하여 dll을 다운받을수 있다.ubuntu의 경우는 간단하게 sudo apt-get install freeglut3-dev 명령..
- PyOpenGL - glutInit 초기화 에러 OpenGL.error.NullFunctionError
-
- PyOpenGL - py2exe로 배포하기
-
Time To Share by Time To Share|2015/12/29 02:15
I played with getting a py2exe executable created from PyOpenGL today, and it is very close to working. The basics:from distutils.core import setupimport py2exe, sysimport glob, osimport OpenGL sys.argv.append('py2exe') d..
- PyOpenGL - py2exe로 배포하기
-
- PyOpenGL, glutInit 초기화시 에러가 발생할때..
-
Time To Share by Time To Share|2015/12/29 02:12
* Error MessageTraceback (most recent call last): File "main.py", line 35, in _init_ glutInit(sys.argv) File "C:Python27libsite-packagesOpenGLGLUTspecial.py", line 324, in glutInit _base_glutInit( ctyp..
- PyOpenGL, glutInit 초기화시 에러가 발생할때..
-
- PyOpenCL / PyOpenGL - AttributeError: 'numpy.ndarray' object ..
-
Time To Share by Time To Share|2015/12/29 02:09
pyopencl 예제를 실행하다 보면 아래와 같이 vbo(vertex buffer object)의 buffers를 참조하려다 에러가 나는 경우가 있다. 동일한 문제에 관한 글이 있다. 참고하자https://sourceforge.net/p/pyopengl/mailman/message/32863450/ Traceback (most recent call..
- PyOpenCL / PyOpenGL - AttributeError: 'numpy.ndarray' object ..
-
- PyCuda, PyOpenCL - OpenGL과 연동하기
-
Time To Share by Time To Share|2015/12/04 02:38
pycuda, pyopencl 을 설치할때에는 소스를 받아서 설치하는 것이 좋다. 그리고 설치할때 중요한점 하나 opengl과 연동을 하기 위해선 설치하기전에 옵션을 하나 추가해 주어야 한다. 소스폴더로 이동한후 siteconf.py 파일을 열고 아래와 같이 각각 옵션을 추가해준후 소..
- PyCuda, PyOpenCL - OpenGL과 연동하기