Home
last modified time | relevance | path

Searched refs:arthreshold (Results 1 – 5 of 5) sorted by relevance

/dports/graphics/blender/blender-2.91.0/extern/audaspace/src/fx/
H A DEnvelope.cpp29 float arthreshold; member
46 …e(std::shared_ptr<ISound> sound, float attack, float release, float threshold, float arthreshold) : in Envelope() argument
51 m_arthreshold(arthreshold) in Envelope()
60 param->arthreshold = m_arthreshold; in createReader()
/dports/graphics/blender/blender-2.91.0/extern/audaspace/include/fx/
H A DEnvelope.h72 float threshold, float arthreshold);
/dports/graphics/blender/blender-2.91.0/extern/audaspace/bindings/C/
H A DAUD_Sound.h184 …_Sound_envelope(AUD_Sound* sound, float attack, float release, float threshold, float arthreshold);
H A DAUD_Sound.cpp342 …D_Sound_envelope(AUD_Sound* sound, float attack, float release, float threshold, float arthreshold) in AUD_Sound_envelope() argument
348 return new AUD_Sound(new Envelope(*sound, attack, release, threshold, arthreshold)); in AUD_Sound_envelope()
/dports/graphics/blender/blender-2.91.0/extern/audaspace/bindings/python/
H A DPySound.cpp779 float attack, release, threshold, arthreshold; in Sound_envelope() local
781 if(!PyArg_ParseTuple(args, "ffff:envelope", &attack, &release, &threshold, &arthreshold)) in Sound_envelope()
791 …reinterpret_cast<std::shared_ptr<ISound>*>(self->sound), attack, release, threshold, arthreshold)); in Sound_envelope()