Last active
March 6, 2024 22:37
-
-
Save nst/696c31566a283588b7933415b3bd6aae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%!PS | |
% Postscript implementation of Georg Nees "Schotter" | |
% Nicolas Seriot, 2022-09-20 | |
% https://collections.vam.ac.uk/item/O221321/schotter-print-nees-georg | |
/COLS 12 def | |
/ROWS 24 def | |
/SIZE 28 def | |
100 770 translate | |
1 -1 scale | |
/jig { rand r mod 2 mul r sub 1 add } def | |
1 1 COLS { | |
/c exch def | |
1 1 ROWS { | |
/r exch def | |
gsave | |
c SIZE mul r SIZE mul translate | |
jig rotate | |
jig jig SIZE SIZE rectstroke | |
grestore | |
} for | |
} for | |
showpage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment