I’m working on a pattern system where the user can store presets of all the parameters, and I want to include the possibility to interpolate between presets. We are talking about many parameters (80-100), so I guess it has to be as fast as possible. What would be a smart way to do this?
Some useful suggestions are very appreciated.
Thanks in advance!
You might store them in a properties file, either in the users home directory or by including the user name in the file name.
If you have access to a database you could also store the presets there.
As for the interpolation, that depends on what values you have to interpolate between. Can you provide more information?