ICanvas.FillArc 方法

定义

将填充的弧线绘制到画布上。

public:
 void FillArc(float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise);
public void FillArc (float x, float y, float width, float height, float startAngle, float endAngle, bool clockwise);
abstract member FillArc : single * single * single * single * single * single * bool -> unit
Public Sub FillArc (x As Single, y As Single, width As Single, height As Single, startAngle As Single, endAngle As Single, clockwise As Boolean)

参数

x
Single

起始 x 坐标。

y
Single

起始 y 坐标。

width
Single

弧线的宽度。

height
Single

弧的高度。

startAngle
Single

从 x 轴到弧线起点的角度。

endAngle
Single

从 x 轴到弧线终点的角度。

clockwise
Boolean

true 以顺时针方向绘制弧线; false 以反时针绘制弧线。

适用于