Click or drag to resize

HitTestPointDataIsPlaneHitByRay Method

Determines whether the provided plane is hit by the ray (this is almost ever the case except if the plane's normal is perpendicular to the hit ray), and determines the point on the plane that is hit.

Namespace: Altaxo.Graph.Graph3D
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool IsPlaneHitByRay(
	PlaneD3D plane,
	out PointD3D planePointHit
)

Parameters

plane  PlaneD3D
The plane.
planePointHit  PointD3D
The point on the plane that is hit (if the return value is true).

Return Value

Boolean
True if the plane is hit; otherwise false.
See Also