I'm using the raphael javascript svg rendering engine. If I use the following code
var canvas = Raphael("canvas",700,500);
var circ = canvas.circle(30,20,10);some_function(circ);
is there any way for some_function
to extract the 30, 20 or 10 from the circle object that has been created?