In my quest to learn javascript (which seems to be my latest source of questions for SO these days) i've found this API for drawing http://www.c-point.com/javascript_vector_draw.htm
Meanwhile I've been making some experiments with graphics, which tend to be heavy on the amount of stuff to draw. This guy is drawing with divs, every square part of the image is a div. You can easily check it by inspecting his example at the page.
He goes to making divs 1px/1px to draw a pixel
Now what i have to ask is the following:
Is this the best method? It seems quite heavy when a drawing is more elaborate. Which other methods would you sugest?
This http://stackoverflow.com/questions/96486/javascript-drawing-library already has a couple of links to libs so no need to put any here.
I've seen here in SO other questions regarding drawing. I'm just wondering to which point drawing with divs isn't awful!