For the purposes of hit testing with HTML5 canvas I'm thinking of this:
1) coords of a shape (eg a rect) are stored - x,y,w,h 2) When the mouse is moved or clicked the rect is drawn to the onscreen canvas again but not stroked or filled - so it's not actually painted to the canvas and is not visible. 3) Now the path can be tested with isPointInPath()
This works well - though the speed seems more or less the same as using an offscreen canvas that hasn't been added to the DOM.
Anyone have any comments? Particularly with regards to more involved paths?