浏览代码

fix error in arcTo.

/main
kg 6 年前
当前提交
338c741d
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 2
      Runtime/ui/painting/path.cs

2
Runtime/ui/painting/path.cs


}
var points = TessellationGenerator.tessellateBezier(x1, y1, x2, y2, x3, y3, x4, y4, this._tessTol);
D.assert(points.Count > 0);
Debug.Log(points.Count + $"{x1} {y1} {x2} {y2} {x3} {y3} {x4} {y4}");
points[points.Count - 1].flags = flags;
foreach (var point in points) {

正在加载...
取消
保存