MCPcopy Create free account
hub / github.com/LabSound/LabSound / frequencyInHz

Method frequencyInHz

src/extended/SfxrNode.cpp:1152–1158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1150 return sqrt(p);
1151}
1152float SfxrNode::frequencyInHz(float sfxr)
1153{
1154 float p = sfxr * sfxr;
1155 p += 0.001f;
1156 p *= OVERSAMPLING * 441.0f;
1157 return p;
1158}
1159
1160float SfxrNode::filterFreqInHz(float sfxr)
1161{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected