AxisAngleRotation3D 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立 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)
參數
- angle
- Double
雙精度浮點數,指定旋轉角度 (以度數為單位)。
範例
下列程式碼摘錄會將 AxisAngleRotation3D 指定為 Rotation 的 RotateTransform3D 屬性。
//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))