generated at
SVG:ellipse要素
中心座標とx方向の半径、y方向の半径
<ellipse cx="100" cy="250" rx="30" ry="50" />
cx cy : 中心座標 (x, y)
rx : x方向の半径
ry : y方向の半径
Color、FillStroke、Graphics
e.svg
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="100" cy="50" rx="100" ry="50" /> </svg>


SVG要素
SVG-terminology