weasel API - v0.8.0
    Preparing search index...

    Interface AnchorState

    Live anchor-editing state, read fresh on every hit-test.

    Anchors are not derivable from ChromeState — they come off the editable path behind whatever the consumer's editAnchors dep exposes — so this thunk is the seam. It's called on every pointer event, so it must be cheap (O(1) field reads); enumeration happens inside regions().

    interface AnchorState {
        editingId: string | null;
        getPose(id: string): unknown;
    }
    Index

    Properties

    Methods

    Properties

    editingId: string | null

    Id of the path currently in anchor-edit mode, or null. Control handles are only hittable on the path that is being edited.

    Methods