共用方式為


AxisAngleRotation3D 建構函式

定義

建立 3-D 旋轉的執行個體。

多載

AxisAngleRotation3D()

建立 3-D 旋轉的執行個體。

AxisAngleRotation3D(Vector3D, Double)

使用指定的軸和角度,建立立體旋轉的執行個體。

AxisAngleRotation3D()

建立 3-D 旋轉的執行個體。

public:
 AxisAngleRotation3D();
public AxisAngleRotation3D ();
Public Sub New ()

適用於

AxisAngleRotation3D(Vector3D, Double)

使用指定的軸和角度,建立立體旋轉的執行個體。

public:
 AxisAngleRotation3D(System::Windows::Media::Media3D::Vector3D axis, double angle);
public AxisAngleRotation3D (System.Windows.Media.Media3D.Vector3D axis, double angle);
new System.Windows.Media.Media3D.AxisAngleRotation3D : System.Windows.Media.Media3D.Vector3D * double -> System.Windows.Media.Media3D.AxisAngleRotation3D
Public Sub New (axis As Vector3D, angle As Double)

參數

axis
Vector3D

Vector3D,指定要繞著哪一個軸旋轉。

angle
Double

雙精度浮點數,指定旋轉角度 (以度數為單位)。

範例

下列程式碼摘錄會將 AxisAngleRotation3D 指定為 RotationRotateTransform3D 屬性。

//Define a rotation
RotateTransform3D myRotateTransform = new RotateTransform3D(new AxisAngleRotation3D(new Vector3D(0, 1, 0), 1));
'Define a rotation
Dim myRotateTransform As New RotateTransform3D(New AxisAngleRotation3D(New Vector3D(0, 1, 0), 1))

適用於