Interface SnapResolution

interface SnapResolution {
    candidate?: SnapCandidate;
    candidates: readonly SnapCandidate[];
    snapped: boolean;
}

Properties

candidate?: SnapCandidate

Best candidate under deterministic ordering, when snapped.

candidates: readonly SnapCandidate[]

All candidates within tolerance, deterministically sorted.

snapped: boolean