Re: [whatwg] add to canvas api

2014-05-20 Thread Emanuel Allen
I don't know how this work... But as a becoming artist, I'm requesting for such a tool. On May 19, 2014, at 1:59 AM, Emanuel Allen emanuelal...@hotmail.com wrote: the tag element area have this: rect - rectangular hotspot you can define the size and placement of circle - circular hotspot

Re: [whatwg] add to canvas api

2014-05-19 Thread bernhard.buecherl
I don’t think this would be necessary, since the canvas api has paths which can be used for all these scenarios. For example a circle can be easily created with: context.beginPath( ); context.moveTo( x - radius, y - radius ); context.arc( radius, radius, radius, 0, 2*Math.PI, false );