I will have a set of data (x, y, heading), and I need to animate it in real-time. I am currently using matplotlib
to animate (x, y) and it works fine, but I would really like to have some way to indicate heading, ie what direction the object is facing. What would be the best library for this? It seems like PyGame might be able to help me out, but would I have to roll out my own graphing library for it?
Thanks