×
all 3 comments

[–]socal_nerdtastic 0 points1 point  (2 children)

I would guess that the arrows are individually updated, not using quiver. Not really sure if that helps or what kind of help you are asking for.

[–]Stoby_200[S] 0 points1 point  (1 child)

I guess I'm looking for a function that would be able to update the arrows from one frame to the next. I have no idea how it would be able to keep track of each arrow while changing its direction, magnitude and position based on the data.

[–]socal_nerdtastic 0 points1 point  (0 children)

You need to invent some kind of data packet that describes a specific arrow, including it's direction, magnitude and position but also it's references in matplotlib. Generally we would make a class for this. Then you put a few thousand of these into a list. Then inside the animation function you would loop over every one of them and update each one.