@samatawy/diagrams
    Preparing search index...

    Interface IHandlePoint

    IAnchorCandidate defines a candidate anchor point for a connection on a node, including the handle of the node and an optional index for a specific point on the node's geometry. This interface is used to determine potential anchor points for connections when establishing relationships between nodes in the diagram. It allows for flexible connection points based on the node's geometry and the desired connection style.

    interface IHandlePoint {
        handle: NodeHandle;
        point: IPoint;
    }
    Index

    Properties

    Properties

    handle: NodeHandle

    The handle of the nodethat should be used (e.g., 'n', 's', 'e', 'w', etc.) For example, indicating where a connection should attach.

    point: IPoint

    The point on the node's geometry where the handle is located.