圆形 circle
<svg> <circle></circle></svg>
矩形 rect
<svg> <rect> </rect></svg>
椭圆 ellipse
<svg> <ellipse> </ellipse></svg>
线 line
<svg> <line> </line></svg>
折线 polyline
<svg> <line> </line></svg>
多边形 polygon
<svg> <polygon> </polygon></svg>
路径 path
可用于路径数据的命令
M = moveto L = lineto H = horizontal lineto V = vertical lineto C = curveto S = smooth curveto Q = quadratic Belzier curve T = smooth quadratic Belzier curveto A = elliptical Arc Z = closepath <svg> <path></path></svg>