SVG Circle
This is part of the SVG Tutorial and exercises drawing a circle in SVG.
examples/js/svg_circle.js
function draw_circle() { var draw = SVG('circle_1'); draw.size(120, 120); draw.circle(100).attr({ fill: '#32AD4F' }); } draw_circle();
Published on 2015-02-14
If you have any comments or questions, feel free to post them on the source of this page in GitHub. Source on GitHub.
Comment on this post