如何从 Circle 中获取参数?

How do I get parameters out of a Circle?

给定一个圆:

var snap = Snap(800,800);
var pl3xx =snap.circle(75, 50, 30);

如何从中取回参数?我试过:

 var cx = pl3xx.cx;

但这不起作用。

尝试使用 attr() 获取和设置属性。

var cx = pl3xx.attr('cx')

Attr doc