Uses of Enum Class
com.irurueta.navigation.frames.FrameType
Packages that use FrameType
Package
Description
Contains frames to represent position, velocity and attitude
within Earth.
Contains converters between pairs of frames to represent
position, velocity and attitude.
-
Uses of FrameType in com.irurueta.navigation.frames
Fields in com.irurueta.navigation.frames declared as FrameTypeModifier and TypeFieldDescriptionprivate FrameType
CoordinateTransformation.destinationType
Destination frame type.private FrameType
CoordinateTransformation.sourceType
Source frame type.Methods in com.irurueta.navigation.frames that return FrameTypeModifier and TypeMethodDescriptionCoordinateTransformation.getDestinationType()
Gets destination frame type.CoordinateTransformation.getSourceType()
Gets source frame type.static FrameType
Returns the enum constant of this class with the specified name.static FrameType[]
FrameType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.irurueta.navigation.frames with parameters of type FrameTypeModifier and TypeMethodDescriptionvoid
CoordinateTransformation.setDestinationType
(FrameType destinationType) Sets destination frame type.void
CoordinateTransformation.setSourceType
(FrameType sourceType) Sets source frame type.Constructors in com.irurueta.navigation.frames with parameters of type FrameTypeModifierConstructorDescriptionCoordinateTransformation
(double roll, double pitch, double yaw, FrameType sourceType, FrameType destinationType) Constructor with Euler angles.CoordinateTransformation
(com.irurueta.algebra.Matrix matrix, FrameType sourceType, FrameType destinationType) Constructor.CoordinateTransformation
(com.irurueta.algebra.Matrix matrix, FrameType sourceType, FrameType destinationType, double threshold) Constructor.CoordinateTransformation
(com.irurueta.geometry.Rotation3D rotation, FrameType sourceType, FrameType destinationType) Constructor with 3D rotation.CoordinateTransformation
(FrameType sourceType, FrameType destinationType) Constructor.CoordinateTransformation
(com.irurueta.units.Angle roll, com.irurueta.units.Angle pitch, com.irurueta.units.Angle yaw, FrameType sourceType, FrameType destinationType) Constructor with Euler angles. -
Uses of FrameType in com.irurueta.navigation.frames.converters
Methods in com.irurueta.navigation.frames.converters that return FrameTypeModifier and TypeMethodDescriptionECEFtoECIFrameConverter.getDestinationType()
Gets destination frame type.ECEFtoNEDFrameConverter.getDestinationType()
Gets destination frame type.ECItoECEFFrameConverter.getDestinationType()
Gets destination frame type.FrameConverter.getDestinationType()
Gets destination frame type.NEDtoECEFFrameConverter.getDestinationType()
Gets destination frame type.TimeIntervalFrameConverter.getDestinationType()
Gets destination frame type.ECEFtoECIFrameConverter.getSourceType()
Gets source frame type.ECEFtoNEDFrameConverter.getSourceType()
Gets source frame type.ECItoECEFFrameConverter.getSourceType()
Gets source frame type.FrameConverter.getSourceType()
Gets source frame type.NEDtoECEFFrameConverter.getSourceType()
Gets source frame type.TimeIntervalFrameConverter.getSourceType()
Gets source frame type.