Click or drag to resize

ViewportInfoFrustumCenterPoint Method

Return a point on the central axis of the view frustum. This point is a good choice for a general purpose target point.

Namespace:  Rhino.DocObjects
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public Point3d FrustumCenterPoint(
	double targetDistance
)

Parameters

targetDistance
Type: SystemDouble
If targetDistance > 0.0, then the distance from the returned point to the camera plane will be targetDistance. Note that if the frustum is not symmetric, the distance from the returned point to the camera location will be larger than targetDistance. If targetDistance == ON_UNSET_VALUE and the frustum is valid with near > 0.0, then 0.5*(near + far) will be used as the targetDistance.

Return Value

Type: Point3d
A point on the frustum's central axis. If the viewport or input is not valid, then ON_3dPoint::UnsetPoint is returned.
See Also