AddClosedCurve

AddClosedCurve(PointF[])

向该路径添加闭合曲线。使用基数样条曲线是因为曲线穿过数组中的每个点。

public void AddClosedCurve(PointF[] points)
范围类型描述
pointsPointF[]一个数组PointF表示定义曲线的点的结构。

也可以看看


AddClosedCurve(PointF[], float)

将闭合曲线添加到此路径。 使用基数样条曲线,因为该曲线穿过数组中的每个点。

public void AddClosedCurve(PointF[] points, float tension)
范围类型描述
pointsPointF[]表示定义曲线的点的 PointF 结构数组。
tensionSingle一个介于 0 到 1 之间的值,它指定曲线在点之间的弯曲量 ,其中 0 是最小的曲线(最尖锐的角),而 1 是最平滑的曲线。

也可以看看