Small versions of Zakhat (thicker lines)

This commit is contained in:
2024-07-30 15:15:33 -07:00
parent 27c0cb7c2a
commit c396fe8dff
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,15 @@
access "src/global.asy" as global;
access "src/zakhat/zakhat.asy" as zakhat;
unitsize(global.unit_size);
pen p=defaultpen+linewidth(zakhat.size_small); // Set the pen width
// Brim
draw(zakhat.brim, p);
// Top
draw(zakhat.top, p);
// Belt
draw(zakhat.belt, p);

View File

@ -0,0 +1,15 @@
access "src/global.asy" as global;
access "src/zakhat/zakhat.asy" as zakhat;
unitsize(global.unit_size);
pen p=defaultpen+linewidth(zakhat.size_small); // Set the pen width
// Brim
draw(zakhat.brim, p);
// Top
filldraw(zakhat.top, drawpen=p);
// Belt
draw(zakhat.belt, p);