(aShape: number[])
| 28 | ]; |
| 29 | |
| 30 | constructor(aShape: number[]) { |
| 31 | this.outputShape = aShape; |
| 32 | this.userCode = ` |
| 33 | |
| 34 | void main() { |
| 35 | float value = getAAtOutCoords(); |
| 36 | if (isnan(value)) { |
| 37 | setOutput(value); |
| 38 | return; |
| 39 | } |
| 40 | |
| 41 | setOutput(clamp(value, minVal, maxVal)); |
| 42 | } |
| 43 | `; |
| 44 | } |
| 45 | } |
nothing calls this directly
no outgoing calls
no test coverage detected