paperbit
v0.0.5
Published
Fast WebGL utility library
Downloads
9
Readme
Paperbit
A WebGL typescript and javascript graphics library.
Documentation
Go to our documentation and setup a new project with the html step guide.
Quick Start
- Take a look at the core concepts.
- Import paperbit to your project
- And use this template to start programming.
const canvas = new PaperbitCanvas(document.body)
const { ellipse, mouse } = canvas.api
canvas.api.onDraw = () => {
ellipse(...mouse.pos, .1)
}