EulerAnglesCreateTaitBryan Method |
Creates a new instance of EulerAngles using Z-Y'-X" convention (Tait-Bryan).
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic static EulerAngles CreateTaitBryan(
double yaw,
double pitch,
double roll
)
Public Shared Function CreateTaitBryan (
yaw As Double,
pitch As Double,
roll As Double
) As EulerAngles
public:
static EulerAngles CreateTaitBryan(
double yaw,
double pitch,
double roll
)
static member CreateTaitBryan :
yaw : float *
pitch : float *
roll : float -> EulerAngles
Parameters
- yaw
- Type: SystemDouble
Yaw angle (Z axis). - pitch
- Type: SystemDouble
Pitch angle (Y' axis). - roll
- Type: SystemDouble
Roll angle (X" axis).
Return Value
Type:
EulerAnglesNew instance of EulerAngles.
See Also