jkomoros / adjacent-possible-viz

Simple visualization library for creating schematic adjacent possible visualizations
Apache License 2.0
4 stars 0 forks source link

Basic data model #1

Open jkomoros opened 3 years ago

jkomoros commented 3 years ago

The basic data model is a series of records, each modifying the ones before it.

jkomoros commented 3 years ago
jkomoros commented 3 years ago
//The data model is an array of states.
[
  {
    set_size: [15,15],
    name: 'NAME TO REFER TO LATER',
  },
  {
    set_values: [[0.0, [3,4]]],
  },

]
jkomoros commented 3 years ago