Skip to content

keyten/Rat.js

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

Rat.js

Small canvas object-oriented library

Init

var ctx = element.getContext('2d');
var rat = new Rat(ctx);

Paths

var path = rat.path([
  ['moveTo', 10, 10],
  ['lineTo', 100, 100],
  ['lineTo', 10, 100],
  ['closePath']
], {
 fillStyle: 'red',
 strokeStyle: 'green',
 lineWidth: 4
});

Image

var img = new Image;
img.src = "image.jpg";
img.onload = function(){
  rat.image(img, {
    rotate: 45 * Math.PI / 180,
    origin: [100, 100]
    // crop, width, height parameters for images
  });
}

Text

var text = rat.text("Hello, world!", {
  fillStyle: 'blue',
  translate: [0, 100]
  // maxWidth parameter for text
});

Animation

function draw(){
  path.style.rotate += Math.PI / 180;
  rat.clear();
  rat.draw([path, image, text]);
  requestAnimationFrame(draw);
}
draw();

Transformations

With origin:

  • rotate (angle in radians)
  • scale (array, [x,y])

Without origin:

  • translate (array, [x,y])
  • transform (array, [m11,m21,m12,m22,dx,dy])

About

Small canvas object-oriented library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published