本文整理匯總了Python中supriya.tools.ugentools.PV_ChainUGen.PV_ChainUGen類的典型用法代碼示例。如果您正苦於以下問題:Python PV_ChainUGen類的具體用法?Python PV_ChainUGen怎麽用?Python PV_ChainUGen使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了PV_ChainUGen類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
def __init__(
self,
pv_chain=None,
):
PV_ChainUGen.__init__(
self,
pv_chain=pv_chain,
)
示例2: __init__
def __init__(
self,
pv_chain_a=None,
pv_chain_b=None,
):
PV_ChainUGen.__init__(
self,
pv_chain_a=pv_chain_a,
pv_chain_b=pv_chain_b,
)
示例3: __init__
def __init__(
self,
aimag=0,
areal=0,
pv_chain=None,
):
PV_ChainUGen.__init__(
self,
aimag=aimag,
areal=areal,
pv_chain=pv_chain,
)
示例4: __init__
def __init__(
self,
pv_chain=None,
integrate=0,
shift=None,
):
PV_ChainUGen.__init__(
self,
pv_chain=pv_chain,
integrate=integrate,
shift=shift,
)
示例5: __init__
def __init__(
self,
pv_chain_a=None,
pv_chain_b=None,
zeroed=0.0001,
):
PV_ChainUGen.__init__(
self,
pv_chain_a=pv_chain_a,
pv_chain_b=pv_chain_b,
zeroed=zeroed,
)
示例6: __init__
def __init__(
self,
pv_chain_a=None,
pv_chain_b=None,
trigger=0,
wipe=0,
):
PV_ChainUGen.__init__(
self,
pv_chain_a=pv_chain_a,
pv_chain_b=pv_chain_b,
trigger=trigger,
wipe=wipe,
)
示例7: __init__
def __init__(
self,
pv_chain=None,
num_teeth=0,
phase=0,
width=0.5,
):
PV_ChainUGen.__init__(
self,
pv_chain=pv_chain,
num_teeth=num_teeth,
phase=phase,
width=width,
)
示例8: __init__
def __init__(
self,
pv_chain=None,
propf=0,
proph=0,
threshold=1,
waittime=0.04,
):
PV_ChainUGen.__init__(
self,
pv_chain=pv_chain,
propf=propf,
proph=proph,
threshold=threshold,
waittime=waittime,
)
示例9: __init__
def __init__(self, pv_chain=None, trigger=0):
PV_ChainUGen.__init__(self, pv_chain=pv_chain, trigger=trigger)