Make zakhats bigger

This commit is contained in:
2024-06-19 16:22:43 -07:00
parent 8d8eecdbf8
commit 0f8d24b3e5
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,6 @@
pen p=defaultpen+linewidth(2); // Set the pen width unitsize(20);
pen p=defaultpen+linewidth(50); // Set the pen width
// Brim // Brim
draw((0,-10) .. (3.5,-13) .. (10,-15) -- (30,-15) .. (36.5,-13) .. (40,-10), p); draw((0,-10) .. (3.5,-13) .. (10,-15) -- (30,-15) .. (36.5,-13) .. (40,-10), p);

View File

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