I discovered a little something called Processing. It’s math and art all at once!
Sample program - draws an ‘N’ - right ‘ere:
int h = 200;
int w = 200;
int thickness = 50;
void setup() {
size(w, h);
background(0);
stroke(255);
}
void draw() {
for(int i = 0; i < thickness; i++) {
// left vertical
line(i, 0, i, h);
// diagonal
line((i + 1), 0, (w - thickness + i + 1), h);
// right vertical
line((w - i - 1), 0, (w - i - 1), h);
}
}


