Trimod Editor - Curvepack
I'll get my arse to make a tutorial with images in the near future making it easier to create what you need. Right now, I've been home and ill for 4-5 days and I'm really not all that tempted to write a tutorial.
I haven't tested these curves, if you want, just create a loop to log it like:
void LogSerie(int max_x, string seriename)
{
int value, x;
int serie = TrimodFunction__GetByName(seriename);
log('');
log(' -- Logging : ''+seriename+'' -- ');
for(x=0; x<max_x+1; x++)
{
value = TrimodFunction__GetValue(serie, x);
log(str(x)+': Y = '+str(value));
}
}
Remember to load your .trm file first with TrimodFunction__LoadFile('blah.trm');
Sinewave has a max of 360, so be careful about max x. anyway gotta run!