Skip to content

An extendable drawing system built for the web.

License

Notifications You must be signed in to change notification settings

tshaddix/paintbricks

Repository files navigation

paintbricks

An extendable drawing system built for the web.

Install

npm install --save paintbricks

Usage

// import manager and tool
import {Manager, PenTool} from "paintbricks";

// Create a new manager
const manager = new Manager(canvasElem, canvasWidth, canvasHeight);

// create a new pen tool with color and stroke width
const penTool = new PenTool("blue", 5);

// set the current tool as the pen tool
manager.setTool(penTool);

// ... draw :)