-
Notifications
You must be signed in to change notification settings - Fork 16
Description
Almost all visualizers need to deal with the first and last entries of the sequence they are viewing in some way. Differences has an "n" parameter, Chaos has a first and last that won't go beyond the boundaries, ModFill had a hardcoded limit of 1000 terms, etc., etc. It feels a bit idiosyncratic for the person making visualizations.
Is there a common structure that we can adopt for all visualizers that will do this in a uniform way? And have a common part of the UI for handling it? Should it perhaps even be controlled in the Sequence part, and then we just build into all Visualizers that they are expected to display the Sequence from first to last index? Or, if that turns out not to make sense, is there common handling of start and end indices we could put in (say) P5Visualizer base class?