iink-ts - v4.0.0
    Preparing search index...

    Type Alias TAnchor

    Anchor point on a symbol, expressed as normalized 0-1 coordinates within the symbol's bounds. (0,0) = top-left, (1,1) = bottom-right. Stored as normalized values so the anchor remains valid when the target symbol moves or resizes.

    type TAnchor = {
        entryPoint?: { x: number; y: number };
        normalizedX: number;
        normalizedY: number;
        symbolId: string;
    }
    Index
    entryPoint?: { x: number; y: number }

    Intersection of the edge with the shape border, in world coordinates.

    normalizedX: number
    normalizedY: number
    symbolId: string