當前位置: 首頁>>代碼示例>>Python>>正文


Python PV_ChainUGen.PV_ChainUGen類代碼示例

本文整理匯總了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,
         )
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:8,代碼來源:PV_MagSquared.py

示例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,
         )
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:10,代碼來源:PV_Min.py

示例3: __init__

 def __init__(
     self,
     aimag=0,
     areal=0,
     pv_chain=None,
     ):
     PV_ChainUGen.__init__(
         self,
         aimag=aimag,
         areal=areal,
         pv_chain=pv_chain,
         )
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:12,代碼來源:PV_ConformalMap.py

示例4: __init__

 def __init__(
     self,
     pv_chain=None,
     integrate=0,
     shift=None,
     ):
     PV_ChainUGen.__init__(
         self,
         pv_chain=pv_chain,
         integrate=integrate,
         shift=shift,
         )
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:12,代碼來源:PV_PhaseShift.py

示例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,
         )
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:12,代碼來源:PV_MagDiv.py

示例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,
         )
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:14,代碼來源:PV_RandWipe.py

示例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,
         )
開發者ID:digideskio,項目名稱:supriya,代碼行數:14,代碼來源:PV_RectComb.py

示例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,
         )
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:16,代碼來源:PV_HainsworthFoote.py

示例9: __init__

 def __init__(self, pv_chain=None, trigger=0):
     PV_ChainUGen.__init__(self, pv_chain=pv_chain, trigger=trigger)
開發者ID:andrewyoung1991,項目名稱:supriya,代碼行數:2,代碼來源:PV_Diffuser.py


注:本文中的supriya.tools.ugentools.PV_ChainUGen.PV_ChainUGen類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。