共用方式為


ICanvas.Rotate 方法

定義

多載

Rotate(Single)

在畫布左上角旋轉圖形物件(0,0)。

Rotate(Single, Single, Single)

繞點旋轉圖形物件。

Rotate(Single)

來源:
ICanvas.cs
來源:
ICanvas.cs

在畫布左上角旋轉圖形物件(0,0)。

public:
 void Rotate(float degrees);
public void Rotate (float degrees);
abstract member Rotate : single -> unit
Public Sub Rotate (degrees As Single)

參數

degrees
Single

備註

旋轉是順時針方向增加角度。 允許負角度和大於 360 的角度。

適用於

Rotate(Single, Single, Single)

來源:
ICanvas.cs
來源:
ICanvas.cs

繞點旋轉圖形物件。

public:
 void Rotate(float degrees, float x, float y);
public void Rotate (float degrees, float x, float y);
abstract member Rotate : single * single * single -> unit
Public Sub Rotate (degrees As Single, x As Single, y As Single)

參數

degrees
Single

旋轉角度。

x
Single

x 旋轉點的座標。

y
Single

y 旋轉點的座標。

備註

旋轉是順時針方向增加角度。 允許負角度和大於 360 的角度。

適用於