https://github.com/honzabrecka/gama
A practical 2D math/geometry library for functional JavaScript, based on Ramda.
https://github.com/honzabrecka/gama
functional geometry-library javascript math matrix ramda
Last synced: 4 months ago
JSON representation
A practical 2D math/geometry library for functional JavaScript, based on Ramda.
- Host: GitHub
- URL: https://github.com/honzabrecka/gama
- Owner: honzabrecka
- License: mit
- Created: 2015-01-08T15:48:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-08-18T19:22:11.000Z (almost 9 years ago)
- Last Synced: 2026-01-13T06:50:56.206Z (6 months ago)
- Topics: functional, geometry-library, javascript, math, matrix, ramda
- Language: JavaScript
- Homepage:
- Size: 105 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Γ [](https://circleci.com/gh/honzabrecka/gama/tree/master)
A practical 2D math/geometry library for functional JavaScript, based on [Ramda](http://ramdajs.com/).
## Why Gama?
Gama is based on Ramda and follows its philosophy. The primary features of Gama are:
- Immutability and side-effect free functions are at the heart of its design philosophy. This can help you get the job done with simple, elegant code.
- Functions are automatically curried. This allows you to easily build up new functions from old ones simply by not supplying the final parameters.
## Installation
```console
npm install gama
```
## Testing
```console
npm install
npm run lint
npm run test
```