Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

ait-canvas

mollerse103MIT0.6.5

Ait module with html canvas bindings

Ait, canvas

readme

ait-canvas

Canvas words for the Ait Language

Install

npm install mollerse/ait-canvas

Usage

Browser

@load ait-canvas ;

"canvas" createElement canvasContext

Load the module. Create a canvas-element (or grab an existing one, doesn't matter) and grab the canvasContext. Now you can use the canvas words in this pacakge.

Node

The canvas is normaly not available in node, but there is a package called canvas which can be used. The bindings for this is available in the node.js file. It can be used like this:

@load ait-canvas ;
@load ait-canvas/node ;

nodeCanvas canvasContext

The main difference is the nodeCanvas word which gives you an instance of node-canvas.

Still missing

  • Image drawing
  • Text
  • Pixel manipulation