ViewportInfoGetFrustum Method |
Gets the view frustum.
Namespace:
Rhino.DocObjects
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public bool GetFrustum(
out double left,
out double right,
out double bottom,
out double top,
out double nearDistance,
out double farDistance
)
Public Function GetFrustum (
<OutAttribute> ByRef left As Double,
<OutAttribute> ByRef right As Double,
<OutAttribute> ByRef bottom As Double,
<OutAttribute> ByRef top As Double,
<OutAttribute> ByRef nearDistance As Double,
<OutAttribute> ByRef farDistance As Double
) As Boolean
Parameters
- left
- Type: SystemDouble
A left value that will be filled during the call. - right
- Type: SystemDouble
A right value that will be filled during the call. - bottom
- Type: SystemDouble
A bottom value that will be filled during the call. - top
- Type: SystemDouble
A top value that will be filled during the call. - nearDistance
- Type: SystemDouble
A near distance value that will be filled during the call. - farDistance
- Type: SystemDouble
A far distance value that will be filled during the call.
Return Value
Type:
Booleantrue if operation succeeded; otherwise, false.
See Also