Inside laFabrique library a multiline string has been created. It is useful, for instance, to create dynamic and generated OpenGL shader.
An example of use :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
public static void main(String[] args) { StringMultiLine str = new StringMultiLine( " @@@@ ", " @@@@@@@@@@ ", " @@@@@@@@@@@@ ", " @@@ @@@@ @@@ ", " @@@ @@@@ @@@ ", " @@@ @@@@ @@@ ", " @@@@@@@@@@@@@@ ", " @@@@@@@@@@@@@@ ", " @@@@@@@@@@@@ ", " @@ @@ ", " @@@ @@@ ", " @@@@ "); System.out.println(str); } |
the result is :
1 2 3 4 5 6 7 8 9 10 11 12 |
@@@@ @@@@@@@@@@ @@@@@@@@@@@@ @@@ @@@@ @@@ @@@ @@@@ @@@ @@@ @@@@ @@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@ @@ @@ @@@ @@@ @@@@ |
To use it, just download from laFabrique download page.