Some more cleanup
This commit is contained in:
parent
a177c5a9c2
commit
d25d0d5e49
1 changed files with 3 additions and 12 deletions
|
|
@ -254,10 +254,7 @@ namespace _internals {
|
|||
*rightCoeff = floatIndex - *index;
|
||||
*leftCoeff = static_cast<T>(1.0) - *rightCoeff;
|
||||
}
|
||||
index++;
|
||||
leftCoeff++;
|
||||
rightCoeff++;
|
||||
jump++;
|
||||
incrementAll(index, leftCoeff, rightCoeff, jump);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -313,10 +310,7 @@ namespace _internals {
|
|||
*index = static_cast<int>(floatIndex);
|
||||
*rightCoeff = floatIndex - *index;
|
||||
*leftCoeff = 1.0f - *rightCoeff;
|
||||
index++;
|
||||
leftCoeff++;
|
||||
rightCoeff++;
|
||||
jump++;
|
||||
incrementAll(index, leftCoeff, rightCoeff, jump);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -878,10 +872,7 @@ namespace _internals {
|
|||
*jump = static_cast<int>(*floatJump);
|
||||
*rightCoeff = *floatJump - static_cast<float>(*jump);
|
||||
*leftCoeff = static_cast<T>(1.0) - *rightCoeff;
|
||||
leftCoeff++;
|
||||
jump++;
|
||||
rightCoeff++;
|
||||
floatJump++;
|
||||
incrementAll(floatJump, leftCoeff, rightCoeff, jump);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue