https://github.com/guoweish/amo.gl
toolkit for native webgl
https://github.com/guoweish/amo.gl
data-visualization glsl webgl
Last synced: 4 months ago
JSON representation
toolkit for native webgl
- Host: GitHub
- URL: https://github.com/guoweish/amo.gl
- Owner: guoweish
- License: mit
- Created: 2018-05-05T09:22:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-06T15:26:29.000Z (over 7 years ago)
- Last Synced: 2025-08-09T01:26:11.759Z (11 months ago)
- Topics: data-visualization, glsl, webgl
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# amo.gl
Toolkit for native webgl, most of them were collected from Internet.
cuon-matrix.js and cuon-utils.js copyright@2012 kanda and matsuda.
## Installation
npm install amo.gl
## Getting Started
``` javascript
const initShaders = require('amo.gl').initShaders;
const Matrix4 = require('amo.gl').Matrix4;
initShaders(gl, vertexSource, fragmentSource);
let mvpMatrix = new Matrix4();
```