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