void f2fGrid::fLocal() { if (nextGridLine) { fStep(); nextGridLine = false; if (makeSound) { soundSampleMax = int(gridLineStopX-gridLineStartX)+1; if (soundSampleMax < 1) {soundSampleMax = 1;} setSound = new int[soundSampleMax]; } } if (!nextGridLine && !stopGrid) { if (gridLineStep <= (gridLineStopX-gridLineStartX)) { fParse(); ++gridLineStep; } else { nextGridLine = true; strokeLine = true; } } }
rk4::rk4(FILE *in){ fParse(in); }