miSCellaneous_lib
miSCellaneous_lib copied to clipboard
SuperCollider extensions and tutorials: patterns, fx sequencing, granulation, demand rate controlled (half) wavesets, wave folding, sieves, combined lang and server gui control, live coding, single sa...
Since SetLocalBuf accepts any valid UGen input, we can relax the conditions for a valid init of `checkInits`. This will allow to pass initial conditions to ODEs from a Synth.
Dear dkmayer, After installing this Quark, I see the following warning: ``` WARNING: SCDoc: In /Users/prko/Dropbox/prko/__myDocs/Writings/Making Sound using Open Sources/mixed/dev - Bleeding edge/SuperCollider.app/Contents/Resources/HelpSource/Classes/SequenceableCollection.schelp Method -adjustZeroXs has arg named 'zeroXBufs', but...
… this avoids annoying warnings on startup: "WARNING: FunctionDef contains variable declarations and so will not be inlined."
I saw that the ODE UGens do not do multichannel expansion (they call `*basicNew` directly instead of expanding first). I think it would be straightforward to implement. Is there a...
While my previous bug report was a red herring, it did ultimately discover a real, albeit small problem in miSC. ``` \foo.asCompileString // -> 'foo' // ^^ just checking that...
I'd expect that following lines result the same value ``` [1,1].reduce(\lcm); [1,1].lcmByFactors[1]; ``` Actually an empty list is returned in this case. Probably there's a more elegant way to implement...