Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

canvasrenderer

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canvasrenderer

A base class that provides methods for canvas rendering.

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

CanvasRenderer

Build status Windows build status GitHub version npm version Dependencies

A simple base class for canvas animations.

Installation

This module can be installed from npm.

$ npm install canvasrenderer

Usage

import CanvasRenderer from "canvasrenderer";

function Something() {

	CanvasRenderer.call(this);

}

Something.prototype = Object.create(CanvasRenderer.prototype);
Something.prototype.constructor = Something;

Something.prototype.update = function(elapsed) {

	// Custom update logic.

};

Something.prototype.draw = function() {

	// Custom draw code.

};
var sth = new Something();

requestAnimationFrame(sth.render);

Documentation

API

Contributing

Maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

License

Copyright (c) 2015 Raoul van Rüschen
Licensed under the Zlib license.

Keywords

FAQs

Package last updated on 06 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc