| 2280 | } |
| 2281 | |
| 2282 | float DspNetwork::ProjectNodeHolder::getParameter(int index) const |
| 2283 | { |
| 2284 | if(isPositiveAndBelow(index, 16)) |
| 2285 | return parameterValues[index]; |
| 2286 | |
| 2287 | return 0.0f; |
| 2288 | } |
| 2289 | |
| 2290 | bool DspNetwork::ProjectNodeHolder::isActive() const |
| 2291 | { return forwardToNode; } |
no test coverage detected