0
votes
1answer
32 views

Pyglet not running properly on AMD HD4250

I am building an python program using pyglet. The source code runs just fine on any computer exept for my laptop. My Laptop is also the only one with a AMD graphics card: the HD4250. Its Xubuntu 13.04 ...
2
votes
1answer
65 views

Separating Axis Theorem in Python/Pyglet

I'm trying to make a (sort-of) clone of Asteroids in Python using Pyglet. I figured I'd try to get a little fancy and implement the separating axis theorem to do collision. I got it to work, but the ...
0
votes
1answer
25 views

openGL move forward with rotation works for 0 degrees, backwards for 90 degrees

I am trying to move my world in reference to a character. It works if the degree is zero (the player goes forward) but messes up everywhere else. When it is 90 degrees, the player goes backwards ...
0
votes
1answer
47 views

PyOpenGL, issue with 3D graphics on a screen using glFrustum and glTranslate

Overview: I am trying to create a 3D application similar to this: www.youtube.com/watch?v=h9kPI7_vhAU. I am using OpenCV2.2, Python2.7 and pyOpenGL. This can be achieved by this background maths ...
-3
votes
0answers
22 views

Adding a picture to a sphere in pyopengl - texture mapping [closed]

Can anyone help me to add a map picture on to the sphere???? ( Program using pyopengl) The code I have only contain a sphere. Now i want is to make that sphere looks like a globe. I tried texture ...
1
vote
1answer
49 views

OpenGL with PyFace

How I can write an OpenGl application using Enthought Framework? I created a TasksApplication and I am stuck on this tutorial, I don't know what I can use instead PythonEditor there. I need to create ...
-2
votes
0answers
50 views

How to add a button and text to a Pygame window?

I have attached a pygame code which display a rotating sphere. The thing now I want is, 'To attach a clickable button in this window (at the end of the line shown in pgm output)` (Here is the code ...
1
vote
1answer
65 views

3d cube didn't show correctly writen by pyglet

Recently, I have started to learn openGL from this site => http://3dgep.com/?p=2365 and I encounter a problem. That's I didn't get the scene as the site shows. I post my code on this site: import ...
0
votes
0answers
41 views

Create a game overlay- pygame

Is there a way to blit things on top of a programs output? I am writing an extension to Dune2000 where you can preorder troops. I already have written the core - i can preorder the troops, but there ...
-6
votes
0answers
59 views

Optimized way of using if s in this code [closed]

Can You A more efficient way of using if s here in this code This is an extract from my opengl Project cx, cy, cz, sx, sy, sz, level = self.parent.agent.patch_coords_dict[patch] if level != ...
0
votes
0answers
38 views

py2app-Error cannot import USER_BASE

I am using py2app to bundle a application: Note:I installed all this with: sudo pip install --upgrade py2app setuptools macholib modulegraph altgraph Here are my steps(executed in terminal,MacOSX) ...
0
votes
0answers
48 views

Accelerate OpenGL 2d on python3

I used OpenGL to draw about 20 circles. Each circle has 2 lines, ~10 segments, and all of them have different colors and lenght. FPS ~=4. How can I do this faster? I am using Python 3 on Ubuntu Code: ...
2
votes
0answers
86 views

Pyglet, shaders and GLSL layout tag for color attribute

I'm trying to use pyglet and OpenGL 4 style shaders (ie: not using any matrix operations, using (layout=...) etc...) I have a basic vertex shader which is: #version 400 uniform mat4 ...
3
votes
4answers
113 views

What was Blender created in?

Does Blender use OpenGl or DirectX? Or is it all done from scratch?
0
votes
1answer
71 views

Converting OpenGL's glRotated to Maya's cmds.rotate

I have a C++/OpenGL program that creates a lot of cylinders at various rotations so they all appear connected. I added on an export method to write a python script of the same draw methods for Maya so ...
2
votes
1answer
88 views

How to create OpenGL 3.0 context using Pyglet

I'd like to make use of OpenGL 3.0 features (framebuffer objects, 2D texture array), but the default OpenGL context created by Pyglet does not support these. In the Pyglet source there is the ...
1
vote
1answer
110 views

how to get face mesh with opencv and opengl?

I'm using opencv and python for face detection, but I need to calculate the face position and get some features like opened eyes and opened mouth. I was thinking to use the vertex values from a face ...
0
votes
0answers
96 views

pyopengl - dynamically updating values in a vertex buffer object

I'd like to create polygons with draggable vertices in PyOpenGL. Having read around a bit, VBOs seemed like a sensible way to achieve this. Having never used VBOs before, I'm having trouble figuring ...
1
vote
0answers
66 views

How to use Xlib and OpenGL with Python and NVidia card?

I copied this code from another thread and it works fine. from Xlib import X, display from OpenGL import GL, GLX from OpenGL.raw._GLX import struct__XDisplay from ctypes import * # some python-xlib ...
1
vote
1answer
44 views

Nested loop apparently not looping in PyOpenGL

I'm pretty sure that this is specifically my error in Python's looping syntax, but I can't for the life of me figure out what's wrong. I'm using Python on OSX with PyOpenGL and GLUT for a very basic ...
2
votes
2answers
133 views

using numpy arrays and ctypes for OpenGL calls in Pyglet

I've got what seems like a very ugly little piece of code that I seem to keep on resorting back to whenever I'm trying to draw arrays with pyglet, of the form: vertPoints = ...
0
votes
1answer
106 views

How to draw two circles facing each other in 3D space

I'm attempting to draw a network in 3D using Python's Pyglet library. I have spheres representing proteins and they are drawn in place (given x,y,z coordinates) rather than drawing them at 0,0,0 and ...
1
vote
0answers
100 views

Rendering text with QGLWidget.renderText after displaying 3d scene with shaders

I'm writing a 3D application that draws a 3D scene and wants to overlay to this 3D scene some UI elements containing text. To do that I'm using Python and the libraries PySide and PyOpenGL. I'm using ...
0
votes
1answer
66 views

python cannot find GL

Trying to use pyglet1.2alpha1 under FreeBSD with python3.3 on an amd64 machine, I get $ python ~/.local/lib/python3.3/site-packages/pyglet/gl/gl_info.py Traceback (most recent call last): File ...
3
votes
2answers
131 views

PyOpenGL access violation on Intel HD Graphics 3000

I have an issue with PyOpenGL 3.0.2 on a Windows 8 64 bits laptop with an Intel HD 3000 graphics chipset. Any call to glGenBuffers(1) (after proper GL initialization) crashes: File ".\sample.py", ...
0
votes
0answers
75 views

Dragging an object in openGL

What I'm trying to do is drag the end of a line across the screen using a motion function like so: def motion(a, b): b=wh-b global MOVING if (MOVING == 1): table[0].x=a table[0].y=b ...
0
votes
1answer
49 views

Deleting an object in OpenGL

So I am just getting started with openGL and I'm having trouble trying to figure out how to delete an object that has already been drawn.I have 2 different rectangles glBegin(GL_POLYGON) ...
1
vote
1answer
122 views

How do I modify the perspective of an OpenGL using gluLookAt()?

I want to change the angles at which I view the models I create. I looked around and found out about the gluLookAt() function, which I think does what I wan't to do. However, I have absolutely no idea ...
0
votes
0answers
69 views

Toggle fullscreen in PyOpenGL

I'm trying to get toggle fullscreen function working in PyOpenGL however when it toggles from windowed to fullscreen drawn square messes up and the result is just few wierd lines. I'm using this to ...
9
votes
1answer
249 views

How do I use the xlib and OpenGL modules together with python?

I know it is possible to use Xlib and OpenGL together, with GLX (I've done it myself in C). The problem is, how do I do this in python? The OpenGL module has GLX functionality [documentation], but ...
-2
votes
1answer
116 views

How should I start OpenGL programming in Python? [closed]

Ok, so I've been working with python for over a year. I made quite a few programs with python, quite a few with python turtle and many more with Pygame. Games such as "Who wants to be a millionaire", ...
2
votes
1answer
166 views

How to properly set projection and modelview matrices in OpenGL using camera parameters

I have a set of points (3D) taken from a range scanner. Sample data can be found here: http://pastebin.com/RBfQLm56 I also have the following parameters for the scanner: camera matrix [3871.88184, ...
0
votes
2answers
74 views

Using pygames Collision module without initializing display

I'm writing a game with two processes. One for rendering with OpenGL. The other is for Collision detection. This is so I can use more than a single core. However I can't use any pygame surfaces ...
0
votes
0answers
45 views

What am I doing wrong in installin PyOpenGL?

I have been trying to install PyOpenGL for python using easy_install. My OS is windows 32 bit and first I downloaded setuptools-0.6c11.win32-py2.7.exe (md5) from ...
1
vote
1answer
431 views

How to draw with Vertex Array Objects and glDrawElements in PyOpenGL

I have the following code which should simply draw a green triangle to the screen. It is using Vertex Array Objects and index buffers to draw and has the simplest shader I could make. At first I was ...
0
votes
1answer
132 views

OpenGL giving triangles colors in a list

I'm working in python / PyOpenGL, but the calls are basically mapped straight to OpenGL itself so I'm asking for help from people who know either. I've got a big 3D system which I've decomposed into ...
3
votes
2answers
99 views

How to get kivy lines to be drawn consistently

I'm trying to draw a simple "X" in the middle of a button. I've put in the following drawing code: width, height = self.size x, y = self.pos x1, x2 = x + int(width*0.3), x + ...
3
votes
2answers
160 views

shape or scene management for pyglet?

I very much like pyglet, but the basic unit of abstraction is a vector of coordinates, which is unweidly, and not the level of abstraction I'd want when designing a complex scene. Are there any ...
0
votes
1answer
117 views

No valid context when using glutMouseFunc in python

I'm trying to write program in Python using PyOpenGL which I need to use glutMouseFunc for some mouse functionality but when I run the program I get the following error: Traceback (most recent call ...
0
votes
0answers
31 views

About PyOpengl installation and Execution Process

we are planned to develop 3d drawing application so that we are installed opengl Package but when we compile & execute the basic program got an error messages, we dont know how to proceed the ...
8
votes
1answer
318 views

Blender 2.6 JSON exporter, texture wrong only one side of cube

I'm making a simple exporter for Blender 2.6x for a custom JSON format (mainly for use with WebGL), because the existing ones I could find online don't work with Blender 2.6. I've almost got it ...
0
votes
1answer
74 views

Accumulation buffer alternatives

I'm using the accumulation buffer for motion trails and it works amazingly and super easy. Too bad ATI cards don't have this buffer. I need to be able to copy the color buffer reduce all its values ...
0
votes
3answers
261 views

Simple OpenGL / GLSL program does not work

Question: What is wrong with this simple OpenGL/GLSL program? It is supposed to produce a quad with a red-green color gradient. But I just get a black window, and no error messages. import numpy from ...
2
votes
1answer
101 views

Porting OpenGL code from C++ to Python [closed]

I have written a game in C++ / OpenGL and am supposed to port the same to Python. After some research online, I found out PyOpenGL 3.0.2 and WxPython 2.8.12.1 bindings for 2.7 version of Python work ...
1
vote
1answer
56 views

What is PyOpenGL's “context specific data”?

PyOpenGL docs say: Because of the way OpenGL and ctypes handle, for instance, pointers, to array data, it is often necessary to ensure that a Python data-structure is retained (i.e. not garbage ...
1
vote
1answer
277 views

Qt: How to render 3D animation shapes over a camera video stream?

I have a task to create an augmented reality application which has a GUI similar to this one (the overlay route and the FollowMe concept). The interesting part of the task is that the application ...
1
vote
1answer
65 views

PySide QGLBuffer allocate input data

I'm trying to run PySide version of OpenGL Core Profile Qt demo - How_to_use_OpenGL_Core_Profile_with_Qt. It uses QGLBuffer.allocate() method (C++ code) float points[] = { -0.5f, -0.5f, 0.0f, 1.0f, ...
1
vote
2answers
167 views

Making a texture translucent in PyOpenGL

In my scene I have a cube within a sphere. I would like to apply a RGB texture to a sphere and make it translucent. I can import the texture, apply it to the sphere and make it translucent but i am ...
3
votes
1answer
301 views

How to get VBOs to work with Python and PyOpenGL

The following Python program should draw a white triangle in the upper right quadrant of the window. import pygame from OpenGL.GL import * from ctypes import * pygame.init () screen = ...
0
votes
0answers
86 views

Shader raises RuntimeError: Validation failure (0):

Depending on the value of MAX_LIGHTS the following shader code raises the following exception. Any idea why this is? What am I missing? /usr/lib/python2.7/site-packages/OpenGL/GL/shaders.pyc in ...

1 2 3 4 5