summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/tensor.asy
blob: 3791b032b9226cf1157c95bc0c2a57c9c60b8b4c (plain)
1
2
3
4
5
6
7
8
size(200);

pen[][] p={{red,green,blue,cyan},{green,blue,rgb(black),magenta}};
path G=(0,0){dir(-120)}..(1,0)..(1,1)..(0,1)..cycle;
path[] g={G,subpath(G,1,2)..(2,1)..(2,0)..cycle};
pair[][] z={{(0.5,0.5),(0.5,0.5),(0.5,0.5),(0.5,0.5)},{(2,0.5),(2,0.5),(1.5,0.5),(2,0.5)}};
tensorshade(g,p,z);
dot(g);