ymetapost/examples/identity.mp
Yann Esposito (Yogsototh) ef91426863 initial commit
2013-10-01 13:17:56 +02:00

11 lines
208 B
Text

z0=(0,0);
z1=z0 shifted (2gu,0);
drawState(z0, "A");
drawState(z1, "B");
drawoptions(withcolor yellow);
drawEdge(z0,z1, "id_B\circ f = f = f \circ id_A");
drawEdge(z0,z0, "id_A");
drawEdge(z1,z1, "id_B");