RhinoViewportGetFrustum Method |
Gets the view frustum.
Namespace:
Rhino.Display
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
left < right. - right
- Type: SystemDouble
left < right. - bottom
- Type: SystemDouble
bottom < top. - top
- Type: SystemDouble
bottom < top. - nearDistance
- Type: SystemDouble
0 < nearDistance < farDistance. - farDistance
- Type: SystemDouble
0 < nearDistance < farDistance.
Return Value
Type:
Booleantrue if operation succeeded.
See Also