Files
tono/backend/nodes/coordinate_pair.py

27 lines
626 B
Python

from __future__ import annotations
from backend.node_registry import register_node
@register_node(display_name="Coordinate Pair")
class CoordinatePair:
"""Provide a pair of Coordinates, for drawing lines between markers, etc."""
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"a": ("COORD",),
"b": ("COORD",),
}
}
OUTPUTS = (
('COORDPAIR', 'coord_pair'),
)
FUNCTION = "process"
DESCRIPTION = "Output a pair of coordinates."
def process(self, a: tuple, b: tuple) -> tuple:
return ((a, b),)