glutPositionWindow

requests a change to the position of the current window.

Signature

glutPositionWindow( int( x ) , int( y ) )-> void
glutPositionWindow( x , y )
glutPositionWindow( c_int(x), c_int(y) ) -> None

Parameters

VariablesDescription
x
New X location of window in pixels.
y
New Y location of window in pixels.

See Also

glutInitWindowPosition glutReshapeWindow

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

glutPositionWindow
OpenGLContext tests/glut_fullscreen.py Lines: 40
Glinter Widget.py Lines: 33, 148