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

Install Socket

Detect and block malicious and high-risk dependencies

Install
c

canvas-objects

Drawing objects for the HTML Canvas.

0.1.1
latest
67

Supply Chain Security

100

Vulnerability

76

Quality

75

Maintenance

100

License

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Manifest confusion

Supply chain risk

This package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.

Found 1 instance in 1 package

Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Issues
0

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:

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

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