|
View:
New views
4 Messages
—
Rating Filter:
Alert me
|
|
|
Fuse ugenYears ago (gasp... 5 !) I wrote a UGen called Fuse that blocked NaN, inf and other nasty blow ups. It protected the server; useful for putting on individual channels. unfortunately I lost the source code and the build so I need to write it again. does anybody have anything similar already ? otherwise I'll have a go at it. its not a complicated idea.
I've been playing with lots of the josh, mcld, blackrain, bhob ugens lately. awesome stuff ! -cx _______________________________________________ sc-users mailing list sc-users@... http://lists.create.ucsb.edu/mailman/listinfo/sc-users |
|
|
Re: Fuse ugenDyou know CheckBadValues? That's easy to use for this purpose
Dan 2008/3/7, felix <felix@...>: > > Years ago (gasp... 5 !) I wrote a UGen called Fuse that blocked NaN, inf and > other nasty blow ups. It protected the server; useful for putting on > individual channels. > > > unfortunately I lost the source code and the build so I need to write it > again. > > does anybody have anything similar already ? otherwise I'll have a go at > it. its not a complicated idea. > > I've been playing with lots of the josh, mcld, blackrain, bhob ugens lately. > awesome stuff ! > > -cx > > > > > > _______________________________________________ > sc-users mailing list > sc-users@... > http://lists.create.ucsb.edu/mailman/listinfo/sc-users > > -- http://www.mcld.co.uk _______________________________________________ sc-users mailing list sc-users@... http://lists.create.ucsb.edu/mailman/listinfo/sc-users |
|
|
Re: Fuse ugenOn Mar 7, 2008, at 1:47 PM, felix wrote:
Josh
****************************************** /* Joshua D. Parmenter http://www.realizedsound.net/josh/ “Every composer – at all times and in all cases – gives his own interpretation of how modern society is structured: whether actively or passively, consciously or unconsciously, he makes choices in this regard. He may be conservative or he may subject himself to continual renewal; or he may strive for a revolutionary, historical or social palingenesis." - Luigi Nono */_______________________________________________ sc-users mailing list sc-users@... http://lists.create.ucsb.edu/mailman/listinfo/sc-users |
|
|
Re: Fuse ugen
Yeah CheckBadValues will work, and can post a warning, or this if you prefer:
void ZapGremlins_Ctor(ZapGremlins* unit) { SETCALC(ZapGremlins_next); } void ZapGremlins_next(ZapGremlins* unit, int inNumSamples) { float *in = ZIN(0); float *out = ZOUT(0); LOOP(inNumSamples, ZXP(out) = zapgremlins(ZXP(in)); ); } S. On 7 Mar 2008, at 22:40, Dan Stowell wrote:
_______________________________________________ sc-users mailing list sc-users@... http://lists.create.ucsb.edu/mailman/listinfo/sc-users |
| Free embeddable forum powered by Nabble | Forum Help |