From 2cfd9121c50471201bec403926de7d088522cd07 Mon Sep 17 00:00:00 2001 From: Martijn Becker Date: Fri, 21 Apr 2017 00:51:51 +0200 Subject: [PATCH] added flatland quote --- README.md | 4 +++- load.js | 2 +- main.js | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6313265..9f1c46f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ASAP -A Simple Aesthetic Particle engine. +### A Simple Aesthetic Particle engine. + +“Imagine a vast sheet of paper on which straight Lines, Triangles, Squares, Pentagons, Hexagons, and other figures, instead of remaining fixed in their places, move freely about, on or in the surface, but without the power of rising above or sinking below it, very much like shadows—only hard with luminous edges—and you will then have a pretty correct notion of my country and countrymen.” ― Edwin A. Abbott, Flatland: A Romance of Many Dimensions diff --git a/load.js b/load.js index a438f12..81111ee 100644 --- a/load.js +++ b/load.js @@ -6,7 +6,7 @@ const loadScript = _ => { let script = document.createElement("script") script.setAttribute("src","main.js") select("head").appendChild(script) - select('h1').innerText = "A Simple Aestetic Particle engine" + select('h1').innerText = "A Simple Aesthetic Particle engine" } const canvas = select('canvas') diff --git a/main.js b/main.js index d503e9e..213bbf6 100644 --- a/main.js +++ b/main.js @@ -26,6 +26,7 @@ window.onkeydown = e => e.keyCode===32?start():e * - gravitate. * - contain. * - grab. + * - Adding title randomizer. */