I have a canvas which has some lines drawn by mouse movement. I want the line to only last for a few seconds before removing itself. A bit like swirling a ribbon around where it has a set length. I am using lineTo to draw the lines in the canvas. I referenced a bit of the code from here.
The problem
I can clear the line by using clearRect() but this literally clears everything and the problem is that if the line intersects it clears the intersecting area too. here is my Fiddle click and drag inside the bottom right box:
clear rect would give me this:

In Summary
clearRect just wipes everything, I want to dynamically 'un draw' the line so it has a lifetime. And I can't for the life of me find something to do it....
Any help would be amazing!!!!
brush = eval("new " + BRUSHES[0] + "(context)");eval is in general evil, there's nearly nothing you can't do without using eval. the above example is equivalent tobrush = BRUSHES[0](context)– zaphod1984 Jan 26 '12 at 19:15