Added linear interpolation option for envelope random transform, fixes etc

This commit is contained in:
xenakios
2018-03-03 17:55:02 +02:00
parent c391a2c0af
commit d813794ea9
5 changed files with 35 additions and 6 deletions

View File

@ -302,3 +302,5 @@ inline void sanitizeTimeRange(double& t0, double& t1)
if (t1 - t0 < 0.001)
t1 = t0 + 0.001;
}
inline double fractpart(double x) { return x - (int)x; };