Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 769 Bytes

README.md

File metadata and controls

47 lines (27 loc) · 769 Bytes

Splash Image

Flowpen

An experiment in a user interface for exploring fluid flow.

See it at: flowpen.io

The solver is a fork of Jonas Wagner's implementation of Jos Stam's Stable Fluids.

The editor is built with AmpersandJS.

Develop

Install global tools:

sudo npm install -g browserify gulp babel

Install dependencies:

npm install

Link app in node_modules

cd node_modules
ln -s ../app .

Link static directory and index.html

cd dist ln -s ../static . ln -s ../index.html .

Run:

npm start

Converting Java array indexing to I indexing:

Find: [(.{1,5}?)][(.+?)]

Replace: [I($1, $2)]