antvis / FEngine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

<arc>标签画圆

tangying1027 opened this issue · comments

问题: 没办法画完整的 Math.PI * 2
目前解决途径:强行判断一下
if (endAngleOriginal - startAngle === Math.PI * 2) {
endAngle = Math.PI * 2 - 0.001;
}