Documentation
    Preparing search index...

    ComputedStore interface defining derived state computed from the base Store.

    A computed store uses zustand-computed to derive values from base state without storing them directly. This ensures derived values are always consistent with base state and updates automatically when dependencies change.

    interface ComputedStore {
        ui: UIMode;
        visibleMeasurementIds: AnnotationMeasurement.AnnotationMeasurementId[];
    }
    Index

    Properties

    ui: UIMode

    The current UI mode with associated state-specific data. Derived from internal state (_ui) with hydrated measurement objects.

    IDs of measurements that should be visible in the 3D viewport. Derived from internal state and UI mode.