Skip to content

shezard/qanvas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

qanvas

qanvas is a simple canvas wrapper, API is somewhat similar to Raphael.js

Not cross-platform at all, use chrome or expect the unexpected

Usage

// Just an enhanced context2d
var paper = qanvas('myCanvasDivId').paper;

// Built-in props
paper.width;
paper.height;
paper.midWidth;
paper.midHeight;

// Built-in method
paper.circle(cx,cy,radius);
paper.halfCircle(cx,cy,radius[,angle,ox,oy]);
paper.ellipse(cx,cy,width,height[,angle,ox,oy]);
paper.halfEllipse(cx,cy,width,height[,angle,ox,oy]);
paper.rect(x,y,width,height[,angle,ox,oy]);
paper.square(x,y,side[,angle,ox,oy]);
paper.quadri(x1,y1,x2,y2,x3,y3,x4,y4[,angle,ox,oy]);
paper.text(x,y,text);
paper.line(x1,y1,x2,y2[,angle,ox,oy]);

Styling

//shortcuts
paper.fill('rgba(255,255,255,.3)');
paper.stroke('rgba(255,255,255,.3)');

paper.fastStyle('fillStyle','rgba(255,255,255,.3)');

paper.style({
  fillStyle:'rgba(255,255,255,.3)',
  lineWidth : 15
});

You also got some basic helper in qanvas().paper; :

var paper = qanvas('myCanvasDivId').paper;

paper.helper.c2p(x,y);
// Carthesian to Polar
// Return a coresponding [radius,angle] array

paper.helper.p2c(radius,angle);
// Polar to Carthesian
// Return a coresponding [x,y] array

paper.helper.convert(x,y,ox,oy,angle);
// Return a new [x,y], after having rotate x,y from 'angle' centred on ox, oy

License

(The MIT License)

Copyright (c) 2011 Damien Fayol dam.fayol@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

a small canvas wrapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published