次の方法で共有


Matrix.PerspectiveOffCenterRH メソッド

[このドキュメントはプレビュー版であり、後のリリースで変更されることがあります。 空白のトピックは、プレースホルダーとして挿入されています。]

カスタマイズした右手座標系パースペクティブ射影行列を作成します。

名前空間:  Microsoft.WindowsMobile.DirectX
アセンブリ:  Microsoft.WindowsMobile.DirectX (Microsoft.WindowsMobile.DirectX.dll 内)

構文

'宣言
Public Shared Function PerspectiveOffCenterRH ( _
    left As Single, _
    right As Single, _
    bottom As Single, _
    top As Single, _
    znearPlane As Single, _
    zfarPlane As Single _
) As Matrix
'使用
Dim left As Single
Dim right As Single
Dim bottom As Single
Dim top As Single
Dim znearPlane As Single
Dim zfarPlane As Single
Dim returnValue As Matrix

returnValue = Matrix.PerspectiveOffCenterRH(left, _
    right, bottom, top, znearPlane, zfarPlane)
public static Matrix PerspectiveOffCenterRH(
    float left,
    float right,
    float bottom,
    float top,
    float znearPlane,
    float zfarPlane
)
public:
static Matrix PerspectiveOffCenterRH(
    float left, 
    float right, 
    float bottom, 
    float top, 
    float znearPlane, 
    float zfarPlane
)
static member PerspectiveOffCenterRH : 
        left:float32 * 
        right:float32 * 
        bottom:float32 * 
        top:float32 * 
        znearPlane:float32 * 
        zfarPlane:float32 -> Matrix 

パラメーター

  • left
    型 : System.Single
    ビュー ボリュームの最小 x 値。
  • right
    型 : System.Single
    ビュー ボリュームの最大 x 値。
  • bottom
    型 : System.Single
    ビュー ボリュームの最小 y 値。
  • top
    型 : System.Single
    ビュー ボリュームの最大 y 値。
  • znearPlane
    型 : System.Single
    ビュー ボリュームの最小 z 値。
  • zfarPlane
    型 : System.Single
    ビュー ボリュームの最大 z 値。

戻り値

型 : Microsoft.WindowsMobile.DirectX.Matrix
カスタマイズした右手座標系パースペクティブ射影行列である Matrix 構造体。

解説

PerspectiveOffCenterRH メソッドのすべてのパラメーターは、カメラ空間内の距離です。パラメーターは、ビュー ボリュームの大きさを示します。

このメソッドは、返す行列を次の数式によって計算します。

2*znearPlane/(right-left)   0                           0                                              0
0                           2*znearPlane*(top-bottom)   0                                              0
(left+right)/(right-left)  (top+bottom)/(top-bottom)    zfarPlane/(znearPlane-zfarPlane)              -1
0                           0                           znearPlane*zfarPlane/(znearPlane-zfarPlane)    0

.NET Framework セキュリティ

プラットフォーム

Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。 サポートされているバージョンについては、「.NET フレームワークのシステム要件」を参照してください。

バージョン情報

.NET Compact Framework

サポート対象 : 3.5、2.0

参照

参照

Matrix 構造体

Matrix メンバー

Microsoft.WindowsMobile.DirectX 名前空間