Package zzub :: Class Pattern
[hide private]
[frames] | no frames]

Class Pattern

source code

object --+
         |
        Pattern

Offline pattern methods These functions are meant to help editing patterns. Note you cannot retreive a direct zzub_pattern_t object for a "live pattern". You can however, use zzub_plugin_get_pattern to retreive copies of live patterns, and then call zzub_plugin_update_pattern to write the changed pattern back to the engine. Alternately, zzub_plugin_get_pattern_value/zzub_plugin_set_pattern_value can also be used to edit single values in live patterns.

Instance Methods [hide private]
 
__init__(self, handle)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__hash__(self)
hash(x)
source code
 
__eq__(self, other) source code
 
__ne__(self, other) source code
 
destroy(self) source code
 
get_name(self, maxLen=1024) source code
 
set_name(self, name) source code
 
get_row_count(self) source code
 
get_group_count(self) source code
 
get_track_count(self, group) source code
 
get_column_count(self, group, track) source code
 
get_value(self, row, group, track, column) source code
 
set_value(self, row, group, track, column, value) source code
 
interpolate(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Methods [hide private]
 
_new_from_handle(cls, handle) source code
Class Variables [hide private]
  _as_parameter_ = None
  _hash = 0
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, handle)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__hash__(self)
(Hashing function)

source code 

hash(x)

Overrides: object.__hash__
(inherited documentation)