GetClosestPointToPlane Method (IMathEllipArc) Send Feedback
See Also 
ClosestPoint[out]
Point on this mathematical elliptical Arc that is closest to Plane
Plane[out]
Plane
PointOnPlane[out]
Point on Plane that is closest to this mathematical elliptical Arc
Gets the point on this mathematical elliptical Arc that is closest to the specified plane, and gets the point on the specified plane that is closest to this mathematical elliptical Arc.

Syntax

Visual Basic 
Function GetClosestPointToPlane( _
   ByVal Plane As MathPlane, _
   ByRef PointOnPlane As MathPoint _
) As MathPoint
C# 
MathPoint GetClosestPointToPlane( 
   MathPlane Plane,
   out MathPoint PointOnPlane
)
JavaScript 
GetClosestPointToPlane( 
   Plane : dsMathPlane
) : {
   PointOnPlane : dsMathPoint,
   ClosestPoint : Number
}
COM native C++ 
HRESULT GetClosestPointToPlane( 
   IMathPlane* Plane,
   IMathPoint** PointOnPlane,
   IMathPoint** ClosestPoint
) 
C++ 
DSRESULT GetClosestPointToPlane( 
   dsMathPlane* Plane,
   dsMathPoint** PointOnPlane,
   dsMathPoint** ClosestPoint
) 

Parameters

Plane[out]
Plane
PointOnPlane[out]
Point on Plane that is closest to this mathematical elliptical Arc
ClosestPoint[out] or Return Value
Point on this mathematical elliptical Arc that is closest to Plane
 

See Also