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: 2 months 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-16T20:18:49.000Z (6 months ago)
- Last Synced: 2025-05-07T20:35:27.324Z (2 months ago)
- Topics: typescript, webgl
- Language: TypeScript
- Size: 15.6 KB
- Stars: 5
- Watchers: 1
- 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);
```