Gets the ith input node @param i Offset of the input node @return Input node or null
(int i)
| 127 | * @return Input node or null |
| 128 | */ |
| 129 | public Node in(int i) { return _inputs.get(i); } |
| 130 | public Node out(int i) { return _outputs.get(i); } |
| 131 | |
| 132 | public int nIns() { return _inputs.size(); } |