EllipsoidRadialProjection Method  | 
 
            Computes the radial projection of the position vector onto the surface of the ellipsoid.
            
 
    Namespace: 
   AGI.Foundation.Geometry.Shapes
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Cartesian RadialProjection(
	Cartesian position
)
Public Function RadialProjection ( 
	position As Cartesian
) As Cartesian
public:
Cartesian RadialProjection(
	Cartesian position
)
member RadialProjection : 
        position : Cartesian -> Cartesian 
Parameters
- position
 - Type: AGI.Foundation.CoordinatesCartesian
The position vector. 
Return Value
Type: 
CartesianThe Cartesian position of the surface point.
Remarks
            The projection is onto the side of the ellipsoid surface closest to the provided point.
            
See Also