SCNMatrix4.CreateRotationX Method
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.
Overloads
| Name | Description |
|---|---|
| CreateRotationX(Single) |
Builds a rotation matrix for a rotation around the x-axis. |
| CreateRotationX(Single, SCNMatrix4) |
Builds a rotation matrix for a rotation around the x-axis. |
| CreateRotationX(NFloat) |
Builds a rotation matrix for a rotation around the x-axis. |
| CreateRotationX(NFloat, SCNMatrix4) |
Builds a rotation matrix for a rotation around the x-axis. |
CreateRotationX(Single)
Builds a rotation matrix for a rotation around the x-axis.
public static SceneKit.SCNMatrix4 CreateRotationX(float angle);
static member CreateRotationX : single -> SceneKit.SCNMatrix4
Parameters
- angle
- Single
The counter-clockwise angle in radians.
Returns
The resulting SCNMatrix4 instance.
Applies to
CreateRotationX(Single, SCNMatrix4)
Builds a rotation matrix for a rotation around the x-axis.
public static void CreateRotationX(float angle, out SceneKit.SCNMatrix4 result);
static member CreateRotationX : single * SCNMatrix4 -> unit
Parameters
- angle
- Single
The counter-clockwise angle in radians.
- result
- SCNMatrix4
The resulting SCNMatrix4 instance.
Applies to
CreateRotationX(NFloat)
Builds a rotation matrix for a rotation around the x-axis.
public static SceneKit.SCNMatrix4 CreateRotationX(System.Runtime.InteropServices.NFloat angle);
static member CreateRotationX : System.Runtime.InteropServices.NFloat -> SceneKit.SCNMatrix4
Parameters
- angle
- NFloat
The counter-clockwise angle in radians.
Returns
The resulting SCNMatrix4 instance.
Applies to
CreateRotationX(NFloat, SCNMatrix4)
Builds a rotation matrix for a rotation around the x-axis.
public static void CreateRotationX(System.Runtime.InteropServices.NFloat angle, out SceneKit.SCNMatrix4 result);
static member CreateRotationX : System.Runtime.InteropServices.NFloat * SCNMatrix4 -> unit
Parameters
- angle
- NFloat
The counter-clockwise angle in radians.
- result
- SCNMatrix4
The resulting SCNMatrix4 instance.