为什么不能用一个 svg 弧段绘制一个完整的圆

Why isnt it possible to draw a full circle with one svg arc segment

我调查了这个基本上是同一个问题的问题:Circle drawing with SVG's arc path

但它永远不会被清除为什么不可能只用一个圆弧画一个完整的圆。 SVG 弧线允许指定一个 largeArcFlag,表示:"Take the longer route to the endpoint"。因此,如果我有一个在同一点开始和停止的弧段,我希望在设置 largeArcFlag 时它会画一个完整的圆。

谁能指出规范,说完整的圆没有定义或不允许?

在我看来,允许它是完全有意义的

SVG specification

If the endpoints (x1, y1) and (x2, y2) are identical, then this is equivalent to omitting the elliptical arc segment entirely.