Skip to content

Instantly share code, notes, and snippets.

@santhoshtr
Created February 13, 2026 10:04
Show Gist options
  • Select an option

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

Select an option

Save santhoshtr/b95099448fbed814813d92c9d68b220e to your computer and use it in GitHub Desktop.
Parabola #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 white;
endfig;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment