Robin Schmidt
Robin Schmidt
you can already create containers. either by putting a fresh container into the structure and going into it or by selecting a bunch of modules and "containerizing" the selection (all...
ahh...now i understand what you mean some kind of aliasing or linking of a bunch of containers. but what has that to do with whether we have a TriSawOsc or...
i've been just re-reading some document i printed out many years ago. this one: http://argos.vu/wp-content/uploads/2016/05/Digital_Sound_Generation_1.pdf on page 40, it says: > Even if an oscillator lacks immediate phase control, it’s...
moved a lot of code already into the attic: rosic\legacy\MovedToRAPT feels like a spring-cleaning. still lots of grunt work to do. having these double structures is the main thing that...
the impulse-invariant transform discretizes the analog prototype filter in such a way, that the digital impulse response is equal to what you would get when you just sample the analog...
have a look at the files rosic/basics/rosic_TemplateInstantiations.h/cpp. there, i have now consolidated all the template instantiations. there's also this: ```cpp class rsOnePoleFilterStereo : public RAPT::rsOnePoleFilter { public: inline void getSampleFrameStereo(double...
> new mac error MetaControlledParameter::SetValue symbol not found for RAPT::rsClip ok - i inlined the function and dragged it into the header file. that should fix it
comment out? what? where? if you exactly know how to fix it, can you just do it and send me a pull request? working on mac is always such a...
you mean, like this: ```cpp template class RAPT::rsOnePoleFilter; //template class RAPT::rsOnePoleFilter; template class RAPT::rsSmoothingFilter; ```
you are using oversampling there, right? so the blt warping issue is probably not a big deal. so for a synth filter, i'd probably use BLT. IIT is nice for...