Ellipsoid.SurfaceProjection Method (Cartesian) |
Computes the projection of the cartesian position onto the ellipsoid surface.
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 SurfaceProjection(
Cartesian position
)
Public Function SurfaceProjection (
position As Cartesian
) As Cartesian
public:
Cartesian SurfaceProjection(
Cartesian position
)
member SurfaceProjection :
position : Cartesian -> Cartesian
Parameters
- position
- Type: AGI.Foundation.Coordinates.Cartesian
The cartesian position.
Return Value
Type:
CartesianThe cartesian position of the surface projection.
ExceptionsException | Condition |
---|
ArgumentException |
Thrown when the position parameter is near the center of the ellipsoid.
Use the IsAtCenter(Cartesian) member to test any such points if they will exist in the domain
of the calling function.
|
See Also