JavaScript
// 4 x 4
var poem = ["When once the twilight locks no longer",
"That the snow blind twilight ferries over the lakes",
"When once the twilight screws were turned,",
"That wipes away not crow's-foot nor the lock",
"Know now the flesh's lock and vice,",
"A worm tells summer better than the clock,",
"And sister to the fathering worm.",
"Shall it be male or female? say the fingers",
"The jacks of frost they finger in the hives;",
"The fingers at the locks.",
"Locked in the long worm of my finger",
"The sea and instrument, nicked in the locks of time,",
"Storm her sped heart, hand with beheaded veins",
"Shall they clasp a comet in their fists?",
"Her fist of a face died clenched on a round pain;",
"Milk in your mouth, at the sour floods",
"Drives my red blood; that dries the mouthing streams",
"Time for the swimmers' hands, music for silver lock",
"The lips of time leech to the fountain head",
"The dear, daft time I take to nudge the sentence,",
"As the green blooms ride upward, to the drive of time;",
"The sea-halved faith that blew time to his knees,",
"Time tracks the sound of shape on man and cloud,",
"Once below a time,",
"I, that time's jacket or the coat of ice",
"A million minds gave suck to such a bud",
"When the galactic sea was sucked",
"And mother milk was stiff as sand,",
"And all the dry seabed unlocked,",
"Is damp and dry; the quick and dead",
"Where words and water make a mixture",
"The force that drives the water through the rocks",
"Is old as water and plain as an eel;",
"The winder of the water-clocks",
"Where no sea runs, the waters of the heart",
"In sacred waters that no frost could harden,",
"At the breast stored with seas. No return",
"Time, milk, and magic, from the world beginning",
"Nor damned the sea that sped about my fist",
"The mouth of time sucked like a sponge"];
var nouns = [];
var canvas = new fabric.Canvas('c', {
selection: false
});
//var grid = 50;
var grid = 300;
//var gridEnd = 1500;
//var gridEndBottom = 1200;
var...