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?

link|improve this question

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 '09 at 1:57
Based on your title I thought you were talking about figlets figlet.org – JensenDied May 20 '09 at 1:57
2  
s is not a square. – Brian May 20 '09 at 2:03
lol, awesome question – hasen j May 20 '09 at 3:17
@Brian: It could have fooled me. Oh, wait. – aib May 20 '09 at 13:26
show 1 more comment
feedback

1 Answer

up vote 13 down vote accepted

I believe you are after Multi-Dimensional Analog Literals

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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