|   | 1 |  initial version  | 
The animate command will animate any sequence of plots. So choose the plots you want to display, in order, and plug that into animate. For example,
import itertools
KULAYS=['dodgerblue', 'mediumseagreen', 'gold', 'orangered']
[list(L) for L in itertools.permutations(KULAYS)]
will return the permutations of the colors in KULAYS in some order, and so
animate((ModularColor(list(L)) for L in itertools.permutations(KULAYS)))
will produce an animation with one "frame" for each different permutation.
If you want a different kind of animation, choose a different sequence of pictures for animate. See also the documentation.
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.