EllipsoidSurfaceProjection Method (MotionCartographic, 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: 24.2.419.0 (24.2.419.0)
Syntax public 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.FoundationMotionCartographic
The planetodetic cartographic motion. - order
- Type: SystemInt32
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:
MotionCartesianThe cartesian motion of the surface projection.
See Also