I've been tinkering with the html5 canvas element for a while now. It is very useful and all, but I feel very, very limited by the fact that I apparently cannot organize the canvas with objects (not natively).
For instance, if I draw a rectangle, or any other shape, I would really find it useful to be able to access its different properties somewhere else in the script. Instead of that, it seems they just remain, well, drawings, and you have to manually keep track of what is on the canvas, and clear it and rewrite it again when you want to change anything.
My question is: am I missing something ? Is JavaScript providing us with ways to handle objects inside the canvas? If not, are there libraries that do just that already? Which one would you say is the best?