Returns projection of a point on plane in 3D.

Namespace: Ico.Windows.Media.Media3D
Assembly: Ico3DControlsLibrary (in Ico3DControlsLibrary.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public static Point3D PointPlaneProjection(
	Point3D point,
	Point3D planeCenter,
	Vector3D planeNormal
)
Visual Basic
Public Shared Function PointPlaneProjection ( _
	point As Point3D, _
	planeCenter As Point3D, _
	planeNormal As Vector3D _
) As Point3D
JScript
public static function PointPlaneProjection(
	point : Point3D, 
	planeCenter : Point3D, 
	planeNormal : Vector3D
) : Point3D

Parameters

point
Type: System.Windows.Media.Media3D..::..Point3D
Input point.
planeCenter
Type: System.Windows.Media.Media3D..::..Point3D
Point in the plane.
planeNormal
Type: System.Windows.Media.Media3D..::..Vector3D
Normal of the plane.

Return Value

Projected point. In case of invalid normal definition, the resulting point consists of NaN values.

See Also