Counting and arthmetic are valuble skills, I hear

include/FluidSCWrapper.hpp
nix
Owen Green 7 years ago
parent c23dfbe359
commit 3260302782

@ -41,8 +41,9 @@ struct FloatControlsIter
float next()
{
assert(mCount + 1 < mSize);
return *mValues[mCount++];
assert(mCount < mSize && "Boundary error fail horror");
float f = *mValues[mCount++];
return f;
}
void reset(float** vals)

Loading…
Cancel
Save