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: 24.2.419.0 (24.2.419.0)
Syntax public 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