AxisAngleRotation3D Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an instance of a 3-D rotation.
Overloads
AxisAngleRotation3D() |
Creates an instance of a 3-D rotation. |
AxisAngleRotation3D(Vector3D, Double) |
Creates an instance of a 3-D rotation using the specified axis and angle. |
AxisAngleRotation3D()
Creates an instance of a 3-D rotation.
public:
AxisAngleRotation3D();
public AxisAngleRotation3D ();
Public Sub New ()
Applies to
AxisAngleRotation3D(Vector3D, Double)
Creates an instance of a 3-D rotation using the specified axis and angle.
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)
Parameters
- angle
- Double
Double that specifies the angle of rotation, in degrees.
Examples
The following code excerpt specifies an AxisAngleRotation3D as the Rotation property of a 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))
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET