├── .editorconfig ├── .gitignore ├── .npmignore ├── .ts.env ├── LICENSE ├── README.md ├── docs └── style.css ├── images ├── Cover-Algebra.png ├── Cover-OnQuaternionsAndOctonions.png └── Mandelbrot.gif ├── index.html ├── package.json ├── src ├── algebra.d.ts └── algebra.js ├── tests ├── C_test.ts ├── README_test.ts ├── R_test.ts ├── Z_test.ts └── Zi_test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/.npmignore -------------------------------------------------------------------------------- /.ts.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/.ts.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/README.md -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/docs/style.css -------------------------------------------------------------------------------- /images/Cover-Algebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/images/Cover-Algebra.png -------------------------------------------------------------------------------- /images/Cover-OnQuaternionsAndOctonions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/images/Cover-OnQuaternionsAndOctonions.png -------------------------------------------------------------------------------- /images/Mandelbrot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/images/Mandelbrot.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/package.json -------------------------------------------------------------------------------- /src/algebra.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/src/algebra.d.ts -------------------------------------------------------------------------------- /src/algebra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/src/algebra.js -------------------------------------------------------------------------------- /tests/C_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/tests/C_test.ts -------------------------------------------------------------------------------- /tests/README_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/tests/README_test.ts -------------------------------------------------------------------------------- /tests/R_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/tests/R_test.ts -------------------------------------------------------------------------------- /tests/Z_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/tests/Z_test.ts -------------------------------------------------------------------------------- /tests/Zi_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/tests/Zi_test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fibo/algebra/HEAD/tsconfig.json --------------------------------------------------------------------------------