| 1027 | } |
| 1028 | |
| 1029 | double ScriptModulationMatrix::ModulatorTargetData::getIntensityValue(GlobalModulator* gm) const |
| 1030 | { |
| 1031 | auto intensity = dynamic_cast<Modulation*>(gm)->getDisplayIntensity(); |
| 1032 | |
| 1033 | if (isBipolarFreqMod(gm)) |
| 1034 | intensity *= 0.01f; |
| 1035 | |
| 1036 | return intensity; |
| 1037 | } |
| 1038 | |
| 1039 | bool ScriptModulationMatrix::ModulatorTargetData::canConnect(const String& sourceId) const |
| 1040 | { |
no test coverage detected