1/** A set of 2D points as parallel coordinate arrays (region vertices or
2 * samples). Mirrors what hitandrun_sampler.m packs into its payloads. */
3export interface Points {
4 x: number[]
5 y: number[]
6}
8/** The figure's parameter selections — part of the shared state. */
9export interface Params {
10 n: number
11 convex: boolean
12 local: boolean
13}