AxisAngleRotation3D 构造函数

定义

创建三维旋转的实例。

重载

AxisAngleRotation3D()

创建三维旋转的实例。

AxisAngleRotation3D(Vector3D, Double)

使用指定的轴和角度创建三维旋转的实例。

AxisAngleRotation3D()

创建三维旋转的实例。

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

双精度值,用于指定旋转角度(单位为度)。

示例

以下代码摘录指定一个AxisAngleRotation3DRotateTransform3D作为Rotation属性的 。

//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))

适用于