1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
input svgnames; l = 596; h = 842; pair A, B, C, D; A = (0,0); B = (l,0); C = (l,h); D = (0,h); beginfig(1); fill (A--B--D--cycle) withcolor Moccasin; fill (A--C--D--cycle) withcolor Gainsboro; endfig; end