我正在学习如何使用 GWT 构建 Web 应用程序。我想画一条弧线,但无论起点和终点角度如何,我总是得到一个完整的圆。我试过了
context2d.arc((double)cx, (double)cy, 40., 0., 180., true);
context2d.stroke();
和
context2d.beginPath();
context2d.arc((double)cx, (double)cy, 40., 0., 180., true);
context2d.closePath();
context2d.stroke();
每次我得到一个完整的圆圈。我什至在context2d.save()
之前和context2d.restore()
之后添加了一个完整的圆圈。