| PerspectiveProjectionSetFieldOfView Method (Single, Single) |
Sets a symmetric, perspective projection based on field of view.
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public void SetFieldOfView(
float fieldOfViewY,
float aspectRatio
)
Public Sub SetFieldOfView (
fieldOfViewY As Single,
aspectRatio As Single
)
public:
void SetFieldOfView(
float fieldOfViewY,
float aspectRatio
)
member SetFieldOfView :
fieldOfViewY : float32 *
aspectRatio : float32 -> unit
Parameters
- fieldOfViewY
- Type: SystemSingle
The vertical field of view. - aspectRatio
- Type: SystemSingle
The aspect ratio (width / height).
Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException | fieldOfViewY is not between 0 and π radians (0° and 180°), or
aspectRatio is negative or 0.
|
Remarks
This method creates a symmetric frustum.
See Also