Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joewood/igloo-ts
A TypeScript Port of igloo.js - a simple low-level WebGL library
https://github.com/joewood/igloo-ts
typescript webgl
Last synced: about 4 hours ago
JSON representation
A TypeScript Port of igloo.js - a simple low-level WebGL library
- Host: GitHub
- URL: https://github.com/joewood/igloo-ts
- Owner: joewood
- License: unlicense
- Created: 2017-01-13T13:01:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-13T13:23:33.000Z (almost 8 years ago)
- Last Synced: 2024-11-11T22:37:27.587Z (6 days ago)
- Topics: typescript, webgl
- Language: JavaScript
- Size: 7.81 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# igloo-ts
A TypeScript Port of [igloo.js](https://github.com/skeeto/igloojs) - a simple low-level WebGL library## Installation
```
npm install igloo-ts
```Types are included, just use it from TypeScript (or JavaScript):
```typescript
import Igloo, { Program, Buffer } from "igloo-ts";:: ::
const igloo = new Igloo(canvas);
```