EllipsoidRhumbLineSurfaceMotion Method  | 
 
            Converts the motion given in terms of motion on the rhumb line curve to motion of the surface point.
            
 
    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> SurfaceMotion(
	double distance,
	double groundSpeed,
	double groundAcceleration
)
Public Function SurfaceMotion ( 
	distance As Double,
	groundSpeed As Double,
	groundAcceleration As Double
) As Motion(Of Cartesian)
public:
Motion<Cartesian> SurfaceMotion(
	double distance, 
	double groundSpeed, 
	double groundAcceleration
)
member SurfaceMotion : 
        distance : float * 
        groundSpeed : float * 
        groundAcceleration : float -> Motion<Cartesian> 
Parameters
- distance
 - Type: SystemDouble
The distance from the initial point to the point of interest along the rhumb line. - groundSpeed
 - Type: SystemDouble
The velocity on the rhumb line. - groundAcceleration
 - Type: SystemDouble
The acceleration on the rhumb line. 
Return Value
Type: 
MotionCartesianThe motion of the surface point.
See Also