mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Changed: Also handle distMax with negative alpha in new manual rolloff function
This commit is contained in:
parent
1eae7bc35b
commit
41069c4582
1 changed files with 11 additions and 3 deletions
|
@ -89,10 +89,18 @@ float ISource::computeManualRolloff(double alpha, float sqrdist, float distMin,
|
||||||
float rolloff = distMin / dist;
|
float rolloff = distMin / dist;
|
||||||
if (alpha <= -1.0f) return rolloff;
|
if (alpha <= -1.0f) return rolloff;
|
||||||
|
|
||||||
|
if (dist > distMax)
|
||||||
|
{
|
||||||
|
// full attenuation of mbrolloff
|
||||||
|
return (-alpha * rolloff);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
double mb = mbMin * (dist - distMin) / (distMax - distMin);
|
double mb = mbMin * (dist - distMin) / (distMax - distMin);
|
||||||
float mbrolloff = (float)pow(10.0, (double)mb / 2000.0);
|
float mbrolloff = (float)pow(10.0, (double)mb / 2000.0);
|
||||||
return ((1.0 + alpha) * mbrolloff - alpha * rolloff);
|
return ((1.0 + alpha) * mbrolloff - alpha * rolloff);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (sqrdist > distMax * distMax)
|
if (sqrdist > distMax * distMax)
|
||||||
|
|
Loading…
Reference in a new issue