So I have data that is being streamed to grasshopper, it updates the data automatically every few minutes.
Instead of having the new data overwrite everything, is it possible to have the new data stored in a new list/branch, and have a max of 8 branches, which warps and overwrites the 1 branch when it goes over.
For example:
A is the component that recieves new data
B is the component that stores data
first time A gets new data, B stores it in a new list [0]
second time, B stores it in [1]
and so on, when it’s the eighth time, it’s stored in [7]
but when it’s the ninth time, instead of [8], it overwrites [0] and so on