Skip to content

Commit

Permalink
Fixed ::= logo: linewidth and contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmatthes authored Jan 10, 2024
1 parent 0c49fd2 commit ea6f1a2
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .github/aeruginous.asy
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,37 @@ settings.outformat = "svg";
size (50);

// Gear.
for (int i = 0; i < 42; ++i)
draw (circle ((0,0), 1), linewidth (2) + white);
draw (circle ((0,0), 1.25), linewidth (2.3) + white);

for (int i = 0; i < 42; ++i) {
filldraw (
rotate (i * 360 / 42) * (
(0,1.42) -- (-.065,1.3) -- (.065,1.3) -- cycle
),
white,
white
);

filldraw (
rotate (i * 360 / 42) * (
(0,1.4) -- (-.05,1.3) -- (.05,1.3) -- cycle
)
);
}

for (int i = 0; i < 5; ++i)
for (int i = 0; i < 5; ++i) {
draw (rotate (72 * i) * circle ((0,1.12), .1), linewidth (1.5) + white);
draw (rotate (72 * i) * circle ((0,1.12), .1), linewidth (1));
}

draw (circle ((0,0), 1), linewidth (1.5));
draw (circle ((0,0), 1.25), linewidth (1.8));

// Project name icon.
label ("\Huge Æ", (0,0));
for (int i = 0; i < 360; ++i)
label ("\Huge \bf Æ", rotate (i) * (0.01,0), white);

label ("\Huge \bf Æ", (0,0));

/******************************************************************************/

0 comments on commit ea6f1a2

Please sign in to comment.