public interface Rotation
Modifier and Type | Method and Description |
---|---|
boolean |
epsilonEquals(Rotation other,
double epsilon,
Angle.Unit unit)
Indicates whether some other
Rotation object is "approximately equal" to this one. |
boolean |
equals(Object obj)
Indicates whether some other
Rotation object is "equal to" this one. |
double |
getRX()
Deprecated.
Use
getRX(Angle.Unit) instead. |
double |
getRX(Angle.Unit unit)
Provides the value of the Rx parameter in specified units.
|
double |
getRY()
Deprecated.
Use
getRY(Angle.Unit) instead. |
double |
getRY(Angle.Unit unit)
Provides the Ry parameter value in specified units.
|
double |
getRZ()
Deprecated.
Use
getRZ(Angle.Unit) instead. |
double |
getRZ(Angle.Unit unit)
Provides the Rz parameter value in specified units.
|
int |
hashCode() |
String |
toString() |
@Deprecated double getRX()
getRX(Angle.Unit)
instead.@Deprecated double getRY()
getRY(Angle.Unit)
instead.@Deprecated double getRZ()
getRZ(Angle.Unit)
instead.double getRX(Angle.Unit unit)
unit
- The angular unit for which to return the Rx parameterdouble getRY(Angle.Unit unit)
unit
- The angular unit for which to return the Ry parameterdouble getRZ(Angle.Unit unit)
unit
- The angular unit for which to return the Rz parameterboolean epsilonEquals(Rotation other, double epsilon, Angle.Unit unit)
Indicates whether some other Rotation
object is "approximately equal" to this one.
other
- Another Rotation
object.epsilon
- The tolerance value to be used for the comparison of rotation parameters (i.e. Rx, Ry, Rz) in
specified unitsunit
- The angular unit for the specified epsilon
tolerance.true
if the values of this object is "approximately equal" to the values of the other
argument; false
otherwise.boolean equals(Object obj)
Rotation
object is "equal to" this one.int hashCode()
Copyright © 2023. All rights reserved.