Socket
Book a DemoInstallSign in
Socket

chaosjs

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

chaosjs

Util module from "Playing with Chaos"

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

"Playing with Chaos" util module.

This is the util module from Keith Peters' wonderful book "Playing with Chaos" adapted to a node-style module.

Example

var keycode = require('keycode')
  , chaosjs = require('../../chaosjs')
  ;

window.onload = init

function init() {

  var chaos = chaosjs()

  document.body.addEventListener("keyup", function(event) {
    var key = keycode(event.keyCode)
    if (key === 'space') draw()
    else if (key === 'p') chaos.popImage()
  })

  function draw() {
    var x = Math.random() * (chaos.width - 100)
      , y = Math.random() * (chaos.height - 100)
      , w = 20 + Math.random() * 100
      , h = 20 + Math.random() * 100
      , r = Math.floor(Math.random() * 256)
      , g = Math.floor(Math.random() * 256)
      , b = Math.floor(Math.random() * 256)
      ;

    chaos.context.fillStyle = "rgb(" + r + "," + g + "," + b + ")"
    chaos.context.fillRect(x, y, w, h)
  }
}

Differences from original

The biggest difference is that the "init" method is gone and the module itself intializes an object it returns. This is so that you can use this against multiple canvas elements on a single page.

chaosjs([element[, autoSize=true]])

Intializes and returns the util API for element which can be a canvas element or an element id to lookup. If no element is passed one with an id canvas is used. By default the element is resized to the full height and width of the window, you can disable this by passing false as the second argument.

Keywords

fractals

FAQs

Package last updated on 12 Apr 2014

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