public getAnchorPoint()

in tutorials/viewer/src/tutorial_view.tsx [199:208]


    public getAnchorPoint() {
        if (!this.container) return null;
        let bbox = this.container.getBoundingClientRect();
        return {
            x: bbox.left + bbox.width,
            y: bbox.top + bbox.height / 2,
            y1: bbox.top,
            y2: bbox.top + bbox.height
        };
    }