Package glitter :: Package shaders :: Module attribute :: Class AttributeStruct
[hide private]
[frames] | no frames]

Class AttributeStruct

source code

         object --+        
                  |        
               dict --+    
                      |    
collections.OrderedDict --+
                          |
             object --+   |
                      |   |
          BaseAttribute --+
                          |
                         AttributeStruct

Instance Methods [hide private]
new empty dictionary

__init__(self, name, parent)
Initialize an ordered dictionary.
source code
 
__repr__(self)
repr(od)
source code
 
__str__(self)
str(x)
source code
 
__get__(self, obj, cls=None) source code
 
__set__(self, obj, value) source code
 
_on_bind(self) source code
 
_on_release(self) source code

Inherited from collections.OrderedDict: __delitem__, __eq__, __iter__, __ne__, __reduce__, __reversed__, __setitem__, clear, copy, items, iteritems, iterkeys, itervalues, keys, pop, popitem, setdefault, update, values, viewitems, viewkeys, viewvalues

Inherited from dict: __cmp__, __contains__, __ge__, __getattribute__, __getitem__, __gt__, __le__, __len__, __lt__, __new__, __sizeof__, get, has_key

Inherited from object: __delattr__, __format__, __reduce_ex__, __setattr__, __subclasshook__

Class Methods [hide private]

Inherited from collections.OrderedDict: fromkeys

Class Variables [hide private]

Inherited from dict: __hash__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, name, parent)
(Constructor)

source code 

Initialize an ordered dictionary. Signature is the same as for regular dictionaries, but keyword arguments are not recommended because their insertion order is arbitrary.

Returns:
new empty dictionary

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(od)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__get__(self, obj, cls=None)

source code 

To Do: Implement this.

__set__(self, obj, value)

source code 

To Do: Implement this.

_on_bind(self)

source code 

To Do: Implement this: call glVertexAttrib with index=self._location.

_on_release(self)

source code 

To Do: Implement this: restore old vertex attrib values if possible.