├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib ├── cellular-automata.js └── utils │ ├── neighbourhood-functions.js │ └── utils.js ├── package.json ├── readme1.png ├── readme2.png └── test ├── applyingRules.js ├── dimensions.js └── initialization.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = require('./lib/cellular-automata'); -------------------------------------------------------------------------------- /lib/cellular-automata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/lib/cellular-automata.js -------------------------------------------------------------------------------- /lib/utils/neighbourhood-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/lib/utils/neighbourhood-functions.js -------------------------------------------------------------------------------- /lib/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/lib/utils/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/package.json -------------------------------------------------------------------------------- /readme1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/readme1.png -------------------------------------------------------------------------------- /readme2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/readme2.png -------------------------------------------------------------------------------- /test/applyingRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/test/applyingRules.js -------------------------------------------------------------------------------- /test/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/test/dimensions.js -------------------------------------------------------------------------------- /test/initialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kchapelier/cellular-automata/HEAD/test/initialization.js --------------------------------------------------------------------------------