EllipsoidSurfaceProjection 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: 24.2.419.0 (24.2.419.0)
Syntax public 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.CoordinatesCartesian
The cartesian position.
Return Value
Type:
CartesianThe cartesian position of the surface projection.
Exceptions Exception | 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