Ellipsoid.SurfaceProjection Method (Motion<Cartographic>, Int32) |
Computes the projection of the cartographic motion 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 Motion<Cartesian> SurfaceProjection(
Motion<Cartographic> cartographicMotion,
int order
)
Public Function SurfaceProjection (
cartographicMotion As Motion(Of Cartographic),
order As Integer
) As Motion(Of Cartesian)
public:
Motion<Cartesian> SurfaceProjection(
Motion<Cartographic> cartographicMotion,
int order
)
member SurfaceProjection :
cartographicMotion : Motion<Cartographic> *
order : int -> Motion<Cartesian>
Parameters
- cartographicMotion
- Type: AGI.Foundation.Motion<Cartographic>
The planetodetic cartographic motion. - order
- Type: System.Int32
The order of the highest derivative to project. To project just the position, pass 0 for this value. To convert velocity as well, pass 1.
Return Value
Type:
Motion<Cartesian>The cartesian motion of the surface projection.
See Also