* Returns the output slot at the given position. Uses full 20x20 box for the slot. * @param pos The graph co-ordinates to check * @returns The output slot at the given position if found, otherwise `undefined`.
(pos: Point)
| 1982 | * @returns The output slot at the given position if found, otherwise `undefined`. |
| 1983 | */ |
| 1984 | getOutputOnPos(pos: Point): INodeOutputSlot | undefined { |
| 1985 | return getNodeOutputOnPos(this, pos[0], pos[1])?.output |
| 1986 | } |
| 1987 | |
| 1988 | /** |
| 1989 | * Returns the input or output slot at the given position. |
no test coverage detected