Trig(self)
Sends one trigger.
A trigger is an audio signal with a value of 1 surrounded by 0s.
Trig sends a trigger each time it's play() method is called.
Parent class : PyoObject
Parameters:
Methods:
Attributes:
Notes:
The out() method is bypassed. Trig's signal can not be sent to audio outs. Trig has no `mul` and `add` attributes.
Examples:
>>> s = Server().boot() >>> s.start() >>> a = Trig() >>> env = HannTable() >>> tenv = TrigEnv(a, table=env, mul=.5) >>> n = Noise(tenv).out()
Methods details: