Sketch: Raphaël Plugin Demo

This is a quick demo of the sketchy plugin, a work in progress

To use, include Raphaël and the sketchy plugin: http://dethe.github.io/sketchy/sketchy.js

Example 1: Sketchy line

       var s1 = Raphael('sketch1', 500, 20);
       s1.sk_line(10,10,480,10);
    

Example 2: Sketchy rect

       var s2 = Raphael('sketch2', 500, 300);
       s2.sk_rect(10,10,480,280);
    

Example 3: Sketchy ellipse

       var s3 = Raphael('sketch3', 500, 300);
       s3.sk_ellipse(10,10,480,280);