Uses of Class
org.apache.commons.math3.geometry.euclidean.threed.RotationOrder
Packages that use RotationOrder
Package
Description
This package provides basic 3D geometry components.
-
Uses of RotationOrder in org.apache.commons.math3.geometry.euclidean.threed
Fields in org.apache.commons.math3.geometry.euclidean.threed declared as RotationOrderModifier and TypeFieldDescriptionstatic final RotationOrderRotationOrder.XYXSet of Euler angles.static final RotationOrderRotationOrder.XYZSet of Cardan angles.static final RotationOrderRotationOrder.XZXSet of Euler angles.static final RotationOrderRotationOrder.XZYSet of Cardan angles.static final RotationOrderRotationOrder.YXYSet of Euler angles.static final RotationOrderRotationOrder.YXZSet of Cardan angles.static final RotationOrderRotationOrder.YZXSet of Cardan angles.static final RotationOrderRotationOrder.YZYSet of Euler angles.static final RotationOrderRotationOrder.ZXYSet of Cardan angles.static final RotationOrderRotationOrder.ZXZSet of Euler angles.static final RotationOrderRotationOrder.ZYXSet of Cardan angles.static final RotationOrderRotationOrder.ZYZSet of Euler angles.Methods in org.apache.commons.math3.geometry.euclidean.threed with parameters of type RotationOrderModifier and TypeMethodDescriptionT[]FieldRotation.getAngles(RotationOrder order) Deprecated.T[]FieldRotation.getAngles(RotationOrder order, RotationConvention convention) Get the Cardan or Euler angles corresponding to the instance.double[]Rotation.getAngles(RotationOrder order) Deprecated.as of 3.6, replaced withRotation.getAngles(RotationOrder, RotationConvention)double[]Rotation.getAngles(RotationOrder order, RotationConvention convention) Get the Cardan or Euler angles corresponding to the instance.Constructors in org.apache.commons.math3.geometry.euclidean.threed with parameters of type RotationOrderModifierConstructorDescriptionFieldRotation(RotationOrder order, RotationConvention convention, T alpha1, T alpha2, T alpha3) Build a rotation from three Cardan or Euler elementary rotations.FieldRotation(RotationOrder order, T alpha1, T alpha2, T alpha3) Deprecated.Rotation(RotationOrder order, double alpha1, double alpha2, double alpha3) Deprecated.as of 3.6, replaced withRotation(RotationOrder, RotationConvention, double, double, double)Rotation(RotationOrder order, RotationConvention convention, double alpha1, double alpha2, double alpha3) Build a rotation from three Cardan or Euler elementary rotations.
FieldRotation.getAngles(RotationOrder, RotationConvention)