master
*anna* 4 years ago
parent dfd8eb3fe5
commit 1c56f862c3

BIN
.DS_Store vendored

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

@ -0,0 +1 @@
I say that the Library is unending. The idealists argue that the hexagonal rooms are a necessary form of absolute space or, at least, of our intuition of space. They reason that a triangular or pentagonal room is inconceivable. (The mystics claim that their ecstasy reveals to them a circular chamber containing a great circular book, whose spine is continuous and which follows the complete circle of the walls; but their testimony is suspect; their words, obscure. This cyclical book is God.) Let it suffice now for me to repeat the classic dictum: The Library is a sphere whose exact center is any one of its hexagons and whose circumference is inaccessible.

File diff suppressed because one or more lines are too long

@ -0,0 +1,28 @@
<!DOCTYPE html><html><head>
<script src="p5.min.js"></script>
<script src="p5.dom.min.js"></script>
<script src="p5.sound.min.js"></script>
<!-- Generative Design Dependencies here -->
<!-- GG Bundled -->
<script src="gg-dep-bundle.js"></script>
<!-- Opentype -->
<script src="opentype.min.js"></script>
<!-- Rita -->
<script src="rita-small.min.js"></script>
<!-- Chroma -->
<script src="chroma.min.js"></script>
<!-- Jquery -->
<script src="jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<!-- sketch additions -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- main -->
<script src="sketch.js"></script>
</body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,19 @@
var joinedText;
function preload() {
joinedText = loadStrings('data/library_babel_extract1.txt');
}
function setup() {
createCanvas(1000, 800);
textSize(30);
textFont("monospace");
text(joinedText, 10, 10 ,1000,800);
}
function draw() {
//background(255);
}

@ -0,0 +1,8 @@
html, body {
padding: 0;
margin: 0;
}
canvas {
vertical-align: top;
}
Loading…
Cancel
Save