I have been experimenting with a library named SVG.JS, which is wonderful and powerful.
I want to fill all the screen with irregular polygons but I don't know how to make them fill all the screen, independently of the size of it. How could I do it?
And finally, could I make this irregular polygon design with illustrator and then with SVG.JS import it and manipulate them?
http://jsfiddle.net/Vac2Q/3669/
/* create an svg drawing */
var draw = SVG('drawing')
/* draw rectangle */
var polygon = draw.polygon('0,0 100,50 50,100').fill('#f09')
var polygon = draw.polygon('0,0 50,100 0,200').fill('#f04')
var polygon = draw.polygon('100,50 50,100 0,200').fill('#g09')