共用方式為


SensorManager.GetRotationMatrixFromVector(Single[], Single[]) 方法

定義

協助程式函式可將旋轉矩陣。

[Android.Runtime.Register("getRotationMatrixFromVector", "([F[F)V", "")]
public static void GetRotationMatrixFromVector (float[]? R, float[]? rotationVector);
[<Android.Runtime.Register("getRotationMatrixFromVector", "([F[F)V", "")>]
static member GetRotationMatrixFromVector : single[] * single[] -> unit

參數

R
Single[]

要在其中儲存旋轉矩陣的浮點數陣組

rotationVector
Single[]

要轉換的旋轉向量

屬性

備註

協助程式函式可將旋轉矩陣。 指定旋轉轉向量(大概來自ROTATION_VECTOR感測器),傳回數位列 R 中的 9 或 16 個元素旋轉矩陣。R 的長度必須為 9 或 16。 如果 R.length == 9,則會傳回下列矩陣:

/  R[ 0]   R[ 1]   R[ 2]   \
              |  R[ 3]   R[ 4]   R[ 5]   |
              \  R[ 6]   R[ 7]   R[ 8]   /

如果 R.length == 16,則會傳回下列矩陣:

/  R[ 0]   R[ 1]   R[ 2]   0  \
              |  R[ 4]   R[ 5]   R[ 6]   0  |
              |  R[ 8]   R[ 9]   R[10]   0  |
              \  0       0       0       1  /

android.hardware.SensorManager.getRotationMatrixFromVector(float[], float[])Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於