直径=奇数的SVG圆

时间:2013-03-20 13:55:18

标签: svg geometry

我想绘制一个直径为奇数(7px)的圆,所以我可以在圆的中心画一条1px线。

<svg width="600" height="600"> 
    <circle cx="30" cy="30" r="3.5" fill="red" />
</svg> 

奇怪的是,无论r值是什么,直径总是均匀的。

svg circle, odd diameter value

1 个答案:

答案 0 :(得分:1)

cxcy坐标移动.5

<svg width="600" height="600"> 
    <circle cx="30.5" cy="30.5" r="3.5" fill="red" />
</svg>