APILNMatrix_Rotate Method |
行列を回転します。 (ラジアン単位)
Namespace: LuminoAssembly: LuminoDotNet (in LuminoDotNet.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Result LNMatrix_Rotate(
ref Matrix mat,
float xRad,
float yRad,
float zRad,
RotationOrder rotOrder = RotationOrder.XYZ
)
Public Shared Function LNMatrix_Rotate (
ByRef mat As Matrix,
xRad As Single,
yRad As Single,
zRad As Single,
Optional rotOrder As RotationOrder = RotationOrder.XYZ
) As Result
public:
static Result LNMatrix_Rotate(
Matrix% mat,
float xRad,
float yRad,
float zRad,
RotationOrder rotOrder = RotationOrder::XYZ
)
static member LNMatrix_Rotate :
mat : Matrix byref *
xRad : float32 *
yRad : float32 *
zRad : float32 *
?rotOrder : RotationOrder
(* Defaults:
let _rotOrder = defaultArg rotOrder RotationOrder.XYZ
*)
-> Result
Parameters
- mat
- Type: LuminoMatrix
演算結果を格納する行列 - xRad
- Type: SystemSingle
X 軸を回転軸とした角度 - yRad
- Type: SystemSingle
Y 軸を回転軸とした角度 - zRad
- Type: SystemSingle
Z 軸を回転軸とした角度 - rotOrder (Optional)
- Type: LuminoRotationOrder
回転順序の指定
Return Value
Type:
Result[Missing <returns> documentation for "M:Lumino.API.LNMatrix_Rotate(Lumino.Matrix@,System.Single,System.Single,System.Single,Lumino.RotationOrder)"]
See Also