Linking data structures to visual structuresΒΆ
Once you have your new data structure and your desired, potentially new, visual structure, it is time to link them together.
Head towards visualgo/visu/programState.py
, and inside the resolve_visual_structure
function, add a new case for
your structure.
if isinstance(value, YourNewDataStructure):
return ChosenVisualWidget(value)
You are now good to go.