Skip to main content

mind-elixir.arrow

Home > mind-elixir > Arrow

Arrow type

FYI p1: starting point p2: control point of starting point p3: control point of ending point p4: ending point

Signature:

export type Arrow = {
id: string;
label: string;
from: Uid;
to: Uid;
delta1: {
x: number;
y: number;
};
delta2: {
x: number;
y: number;
};
bidirectional?: boolean;
};