vote up 12 vote down star
3

A while ago I stumbled upon a C++ gem, a set of classes that through operator overloading and possibly some preprocessor tricks, let you define variables using in-code ASCII art:

Line x = |-----|;    //x is 5
Line y = |---|;      //y is 3

Rectangle r = +---+
              |   |
              +---+; //r is 3 by 1

and IIRC, it even had support for 3D figures!

But for the life of me I cannot remember the name of this library/header file/set of classes. What is it called?

flag

1  
I remember seeing it somewhere a while ago, but never looked into it. It looks hilarious! Nothing I'd ever use in developement though! :p – DeadHead May 20 at 1:57
Based on your title I thought you were talking about figlets figlet.org – JensenDied May 20 at 1:57
2  
s is not a square. – Brian May 20 at 2:03
lol, awesome question – hasen j May 20 at 3:17
@Brian: It could have fooled me. Oh, wait. – aib May 20 at 13:26

1 Answer

vote up 11 vote down check

I believe you are after Multi-Dimensional Analog Literals

http://www.xs4all.nl/~weegen/eelis/analogliterals.xhtml

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.