本文整理汇总了Python中MMA.pat.PC.restoreGroove方法的典型用法代码示例。如果您正苦于以下问题:Python PC.restoreGroove方法的具体用法?Python PC.restoreGroove怎么用?Python PC.restoreGroove使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MMA.pat.PC
的用法示例。
在下文中一共展示了PC.restoreGroove方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: restoreGroove
# 需要导入模块: from MMA.pat import PC [as 别名]
# 或者: from MMA.pat.PC import restoreGroove [as 别名]
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
self.followChord = self.grooves[gname]['FOLLOWCHORD']
self.followKey = self.grooves[gname]['FOLLOWKEY']
self.rootChord = self.grooves[gname]['ROOT']
PC.restoreGroove(self, gname)
示例2: restoreGroove
# 需要导入模块: from MMA.pat import PC [as 别名]
# 或者: from MMA.pat.PC import restoreGroove [as 别名]
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
self._capoFretNo = self.grooves[gname]['CAPO']
self._tuning = self.grooves[gname]['TUNING'][:]
self.strumCenter = self.grooves[gname]['PSTRUM']
PC.restoreGroove(self, gname)
示例3: restoreGroove
# 需要导入模块: from MMA.pat import PC [as 别名]
# 或者: from MMA.pat.PC import restoreGroove [as 别名]
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
self.voicing = self.grooves[gname]['VMODE']
PC.restoreGroove(self, gname)
示例4: forceRestoreGroove
# 需要导入模块: from MMA.pat import PC [as 别名]
# 或者: from MMA.pat.PC import restoreGroove [as 别名]
def forceRestoreGroove(self, gname):
PC.restoreGroove(self, gname)
示例5: restoreGroove
# 需要导入模块: from MMA.pat import PC [as 别名]
# 或者: from MMA.pat.PC import restoreGroove [as 别名]
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
self.toneList = self.grooves[gname]['TONES']
PC.restoreGroove(self, gname)
示例6: restoreGroove
# 需要导入模块: from MMA.pat import PC [as 别名]
# 或者: from MMA.pat.PC import restoreGroove [as 别名]
def restoreGroove(self, gname):
""" Restore special/local/variables for groove. """
PC.restoreGroove(self, gname)