point.js 79 B

1234
  1. Raphael.fn.point = function(x, y, r) {
  2. return this.circle(x,y,r || 0.001);
  3. };