How to plot an animated object and one object in same plane
I want to concatenate 2 plots... but I cant
a = animate((line([(0,0), (cos(c), sin(c))]) for c in srange(0,2*pi, pi/4)))
p = circle((0,0), 0.10, fill=true, color='magenta')
c = a+b // I get the error here...
How to do this?