ICanvas.Rotate 方法

定义

重载

Rotate(Single)

在画布左上角(0,0)周围旋转图形对象。

Rotate(Single, Single, Single)

围绕点旋转图形对象。

Rotate(Single)

Source:
ICanvas.cs
Source:
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)

Source:
ICanvas.cs
Source:
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 的角度。

适用于