Description
Gets or sets the far plane associated with the
Projection.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property FarPlane() As Double
|
[C#] |
---|
public double FarPlane {get; set;}
|
[Managed C++] |
---|
public: __property double get_FarPlane(); public: __property void set_FarPlane(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_FarPlane(
double * pRetVal
);
public: HRESULT put_FarPlane(
double FarPlane
);
|
[Java] |
---|
public double getFarPlane();
public void setFarPlane(
double
);
|
[Python - STK API ] |
---|
@property
def FarPlane(self) -> float:
@FarPlane.setter
def FarPlane(self, FarPlane:float) -> None:
|
See Also