EllipsoidGeodesicSurfaceMotion Method (Double, Double, Double) |
Converts the motion given in terms of motion on the geodesic curve to motion of the surface point.
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> 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 geodesic. - groundSpeed
- Type: SystemDouble
The velocity on the geodesic. - groundAcceleration
- Type: SystemDouble
The acceleration on the geodesic.
Return Value
Type:
MotionCartesianThe motion of the surface point.
See Also