You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we dont want to or cant generate wave tables any larger, and approximation of the waveform could be made by accumulating fractional steps and rounding off the index to the nearest table entry:
if (stepFloat < 1.0)
{
for (size_t i = 0; i < outPort->elements(); i++)
{
out[i] = _table[_index & _mask];
_offset += _stepFloat;
//TODO when abs(offset) >= 1.0, move its integer part into index
}
}
The text was updated successfully, but these errors were encountered:
When we dont want to or cant generate wave tables any larger, and approximation of the waveform could be made by accumulating fractional steps and rounding off the index to the nearest table entry:
The text was updated successfully, but these errors were encountered: