Move the entire Zakhat to be in the lower-left quadrant

This commit is contained in:
2024-06-19 16:32:34 -07:00
parent 1320d63260
commit 5186d2b11f
2 changed files with 6 additions and 6 deletions

View File

@ -3,10 +3,10 @@ unitsize(20);
pen p=defaultpen+linewidth(50); // Set the pen width
// Brim
draw((0,-10) .. (3.5,-13) .. (10,-15) -- (30,-15) .. (36.5,-13) .. (40,-10), p);
draw((0,-28) .. (3.5,-31) .. (10,-33) -- (30,-33) .. (36.5,-31) .. (40,-28), p);
// Top
draw(box((10,18), (30,-10)), p);
draw(box((10,0), (30,-26)), p);
// Belt
draw(box((10,-10), (30,-15)), p);
draw(box((10,-26), (30,-33)), p);

View File

@ -3,10 +3,10 @@ unitsize(20);
pen p=defaultpen+linewidth(50); // Set the pen width
// Brim
draw((0,-10) .. (3.5,-13) .. (10,-15) -- (30,-15) .. (36.5,-13) .. (40,-10), p);
draw((0,-28) .. (3.5,-31) .. (10,-33) -- (30,-33) .. (36.5,-31) .. (40,-28), p);
// Top
filldraw(box((10,18), (30,-10)), drawpen=p);
filldraw(box((10,0), (30,-26)), drawpen=p);
// Belt
draw(box((10,-10), (30,-15)), p);
draw(box((10,-26), (30,-33)), p);