다음을 통해 공유


Transforms.View Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets or sets the view transformation matrix.

Namespace:  Microsoft.WindowsMobile.DirectX.Direct3D
Assembly:  Microsoft.WindowsMobile.DirectX (in Microsoft.WindowsMobile.DirectX.dll)

Syntax

'Declaration
Public Property View As Matrix
    Get
    Set
'Usage
Dim instance As Transforms
Dim value As Matrix

value = instance.View

instance.View = value
public Matrix View { get; set; }
public:
property Matrix View {
    Matrix get ();
    void set (Matrix value);
}
member View : Matrix with get, set

Property Value

Type: Microsoft.WindowsMobile.DirectX.Matrix
A Matrix representing the transformation.

Remarks

The default view transformation Matrix is the identity Matrix.

Examples

The following example shows how to use the View property. This example is taken from Mobile Matrices Sample in the Managed Direct3D Mobile Samples.

' Set up the view matrix. A view matrix can be defined given an eye point,
' a point to lookat, and a direction indicating which way is up. Here, you set
' the eye five units back along the z-axis and up three units, look at the
' origin, and define "up" to be in the y-direction.
device.Transform.View = Matrix.LookAtLH(New Vector3(0.0F, 3.0F, -5.0F), New Vector3(0.0F, 0.0F, 0.0F), New Vector3(0.0F, 1.0F, 0.0F))
// Set up the view matrix. A view matrix can be defined given an eye point,
// a point to look at, and a direction indicating which way is up. Here, you set
// the eye five units back along the z-axis and up three units, look at the
// origin, and define "up" to be in the y-direction.
device.Transform.View = Matrix.LookAtLH(new Vector3(0.0f, 3.0f, -5.0f), new Vector3(0.0f, 0.0f, 0.0f), new Vector3(0.0f, 1.0f, 0.0f));

.NET Framework Security

Platforms

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

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Compact Framework

Supported in: 3.5, 2.0

See Also

Reference

Transforms Class

Transforms Members

Microsoft.WindowsMobile.DirectX.Direct3D Namespace