🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

canvas-objects

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canvas-objects

Drawing objects for the HTML Canvas.

0.1.1
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

canvas-objects

A Javascript Library for Manipulating the HTML Canvas API.

Overview

canvas-objects is a Javascript library which abstracts the HTML Canvas API and encapsulates functionality to manipulate high level drawing objects on the canvas. The Canvas API allows direct drawing to a region of the browser window, via the HTML <canvas> placeholder element. The HTML Canvas is well suited for implementing dynamic interfaces within a web page.

More Information:

  • w3schools - HTML5 Canvas

Objects

  • ctk: The parent object for the library. All ctk objects are created through ctk functions (e.g. new ctk.Border()). Also exposes a few helper drawing methods.

  • ctk.Canvas: Encapsulates a HTML Canvas and a HTML Context object. Exposes passthrough functions for all of the Context functions.

  • ctk.Point: A simple data object exposing x and y data members.

  • ctk.Rect: A simple data object encapsulating a rectangle object.

  • ctk.Border: A drawing object which draws a border on the canvas. Exposes ctk.Style properties for controlling the visual display of the border. The dimensions of a ctk.Border object is controlled by three rectangle members: BorderRect, ClientRect, and ContentRect.

  • ctk.Style: Encapsulates the data properties exposed by the HTML Context object. Useful for storing visual style configurations and also merging them.

  • ctk.Item: A composite drawing object which combines a ctk.Border object with text display in the border's content area.

  • ctk.ProcessLoop: This object encapsulates a timer. Invokes a callback function repeatedly.

  • ctk.Area: A simple rectangle object with a specific coordinate system.

  • ctk.AreaMap: Maps coordinates between two Area objects.

Reference

History

Keywords

util

FAQs

Package last updated on 01 Aug 2016

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