Description
Gets or sets field of view. The field of view is applied to the larger of the window dimensions. For example, if the window width was 640 and the height was 480, the field of view applies to the horizontal. Use
Horizontal Field Of View and
Vertical Field Of View to get the horizontal and vertical field of views. Wide fields of views generally show more objects but can look distorted as compared to narrower ones.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property FieldOfView() As Double
|
[C#] |
---|
public double FieldOfView {get; set;}
|
[Managed C++] |
---|
public: __property double get_FieldOfView(); public: __property void set_FieldOfView(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_FieldOfView(
double * pRetVal
);
public: HRESULT put_FieldOfView(
double FieldOfView
);
|
[Java] |
---|
public double getFieldOfView();
public void setFieldOfView(
double
);
|
[Python - STK API ] |
---|
@property
def FieldOfView(self) -> float:
@FieldOfView.setter
def FieldOfView(self, FieldOfView:float) -> None:
|
See Also