Skip to content

Instantly share code, notes, and snippets.

@santhoshtr
Last active February 14, 2026 04:20
Show Gist options
  • Select an option

  • Save santhoshtr/1acb2d5a412535c47479a886be3d288c to your computer and use it in GitHub Desktop.

Select an option

Save santhoshtr/1acb2d5a412535c47479a886be3d288c to your computer and use it in GitHub Desktop.
Untitled Metapost Sample #metapost-sandbox
beginfig(0);
width:=100;
rotation:=-45;
pen calligraphicpen ;
calligraphicpen := makepen ((0, 0)--(width,0 ) rotated rotation) ;
z0 = (x1+150, 0);
z1 = (0, y0+250);
z2 = (x1+250, y1+250);
z3 = (x2+250, y1);
z4 = (x2, y0);
pickup calligraphicpen;
draw z0..z1..z2..z3..z4 withcolor red;
endfig;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment