| 1143 | } |
| 1144 | |
| 1145 | float SfxrNode::frequencyInSfxrUnits(float p) |
| 1146 | { |
| 1147 | p /= OVERSAMPLING * 441.0f; |
| 1148 | p -= 0.001f; |
| 1149 | if (p < 0) p = 0; |
| 1150 | return sqrt(p); |
| 1151 | } |
| 1152 | float SfxrNode::frequencyInHz(float sfxr) |
| 1153 | { |
| 1154 | float p = sfxr * sfxr; |
nothing calls this directly
no outgoing calls
no test coverage detected