MATLAB: Animation Circle

graphics

I want to make application that contains many circles move simultaneously around an object . Any help please ASAP.
Thanks,

Best Answer

Use the rectangle() function to draw each of the circles (yes, seriously). Record the handles as you create them. When it comes time to move one, do not redraw it: instead, just update its Position property.
Related Question