public interface JointPositions
This interface represents the positions of all of the joints in the robot arm.
AJointPositions
object can be built using the JointPositionFactory
interface.Modifier and Type | Method and Description |
---|---|
boolean |
epsilonEquals(JointPositions other,
double epsilon,
Angle.Unit unit)
Indicates whether each element of some other
JointPositions object is "approximately equal" to this one. |
boolean |
equals(Object obj)
Indicates whether some other
JointPositions object is "equal to" this one. |
JointPosition[] |
getAllJointPositions()
Provides an array containing all the positions of the joints in the robot arm.
|
int |
hashCode() |
String |
toString() |
JointPosition[] getAllJointPositions()
boolean epsilonEquals(JointPositions other, double epsilon, Angle.Unit unit)
Indicates whether each element of some other JointPositions
object is "approximately equal" to this one.
other
- Another JointPositions
object.epsilon
- The tolerance value to be used for the comparison of joint position values in specified units.unit
- The angular unit for the specified epsilon
tolerance.true
if the values of this object are "approximately equal" to the values of the other
argument; false
otherwise.boolean equals(Object obj)
JointPositions
object is "equal to" this one.int hashCode()
Copyright © 2021. All rights reserved.