Signature
    
    glutMotionFunc( 
    
            function
    
 )
    
        Specify handler for GLUT 'Motion' events
    def handler( (int) x, (int) y ):
        return None
    
    glutPassiveMotionFunc( 
    
            function
    
 )
    
        Specify handler for GLUT 'PassiveMotion' events
    def handler( (int) x, (int) y ):
        return None
Parameters
| Variables | Description | 
|---|---|
| func | 
						The new motion or passive motion callback function.
					 | 
See Also
glutMouseFunc glutSpaceballMotionFunc glutTabletMotionFuncSample 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.
glutMotionFunc
        
        glutPassiveMotionFunc