struct DivWavetable { int len, min, max; int data[256]; DivWavetable(): len(32), min(0), max(31) { for (int i=0; i<256; i++) { data[i]=i; } } };