Construct the velocity vector field along a constant motion around a circle.
> restart;
> x:=cos(t);
> y:=sin(t);
> m:=[[x,y],[x-y,y+x]];
> t:=k*2*Pi/100;
> plot([m$k=1..100],color=green,scaling=constrained,axes=none);
>