Package glitter :: Package raw :: Module constant
[hide private]
[frames] | no frames]

Module constant

source code

Named constants.

Classes [hide private]
  NamedConstant
Named constant.
  IntConstant
Named integer constant.
  FloatConstant
  LongConstant
Functions [hide private]
 
make_constant(name, value)
Create a named constant with name name and value value.
source code
 
wrap_constants(name_re='^(GL|GLU|GLUT|GLX)_[A-Z][A-Z0-9_]*$', types=(<type 'int'>, <type 'long'>, <type 'float'>), d=None)
Convert OpenGL constants to named constants.
source code
Variables [hide private]
  __package__ = 'glitter.raw'
Function Details [hide private]

make_constant(name, value)

source code 

Create a named constant with name name and value value.

An appropriate wrapper class will be generated if necessary.

wrap_constants(name_re='^(GL|GLU|GLUT|GLX)_[A-Z][A-Z0-9_]*$', types=(<type 'int'>, <type 'long'>, <type 'float'>), d=None)

source code 

Convert OpenGL constants to named constants.

All values in d that match name_re and are of one of the types in types will be replaced by corresponding NamedConstants. By default, d is glitter.raw.__dict__.