polygon-arrangement trees
Go to file
Glen Whitney 63dfa62ffd feat: Minimal working p5/CoffeeScript setup 2021-04-18 11:40:29 -07:00
lib feat: Minimal working p5/CoffeeScript setup 2021-04-18 11:40:29 -07:00
.gitignore feat: Minimal working p5/CoffeeScript setup 2021-04-18 11:40:29 -07:00
LICENSE Initial commit 2021-04-17 18:43:58 +00:00
README.md feat: Minimal working p5/CoffeeScript setup 2021-04-18 11:40:29 -07:00
index.html feat: Minimal working p5/CoffeeScript setup 2021-04-18 11:40:29 -07:00
polytree.coffee feat: Minimal working p5/CoffeeScript setup 2021-04-18 11:40:29 -07:00

README.md

PolyTree

Starting from a central polygon, one can imagine a tree P of polygons created by attaching otherpolygons at each edge of the central one and iterating. Of course, many of the resulting polygons overlap. PolyTree selects and displays non-overlapping subtrees of P in a variety of ways.

Implementation

As a first pass, PolyTree will consist of a Processing sketch written in CoffeeScript along with a minimal framework for deploying it (a bit of HTML and JavaScript).

Running

Although you can use any server and CoffeeScript compiler you like, one path of low resistance for running PolyTree is to use Node.js. Hence, the following procedure assumes you have the node package manager (npm) already installed.

Make sure you have http-server and CoffeeScript installed globally (note you may need to run the following with sudo depending on your setup):

npm install -g http-server coffeescript

Clone this repository and enter its top-level directory:

git clone https://code.studioinfinity.org/glen/polytree.git
cd polytree

Set coffee to compile the main script (the "--watch" flag is only necessary if you may be editing the script and would like the files being served to update automatically), and start serving the files:

coffee --watch -c polytree.coffee &
http-server

Now visit http://localhost:8080 in your browser.