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?
1 | initial version |
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?
2 | No.2 Revision |
I want to concatenate 2 plots... but I cant
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?
3 | retagged |
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?