49 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
51 RevoluteJointModel(
const std::string& name,
size_t joint_index,
size_t first_variable_index);
54 const Bounds& other_bounds)
const override;
56 const Bounds& other_bounds,
const double* near,
57 const double distance)
const override;
62 void interpolate(
const double* from,
const double* to,
const double t,
double* state)
const override;
65 double distance(
const double* values1,
const double* values2)
const override;
67 void computeTransform(
const double* joint_values, Eigen::Isometry3d& transf)
const override;
85 void setAxis(
const Eigen::Vector3d& axis);
95 double x2_, y2_, z2_, xy_, xz_, yz_;
std::vector< VariableBounds > Bounds
The datatype for the joint bounds.
JointModel(const std::string &name, size_t joint_index, size_t first_variable_index)
Constructs a joint named name.
double getMaximumExtent() const
void getVariableRandomPositionsNearBy(random_numbers::RandomNumberGenerator &rng, double *values, const Bounds &other_bounds, const double *near, const double distance) const override
Provide random values for the joint variables (within specified bounds). Enough memory is assumed to ...
bool continuous_
Flag indicating whether this joint wraps around.
Eigen::Vector3d axis_
The axis of the joint.
void computeVariablePositions(const Eigen::Isometry3d &transf, double *joint_values) const override
Given the transform generated by joint, compute the corresponding joint values. Make sure the passed ...
void computeTransform(const double *joint_values, Eigen::Isometry3d &transf) const override
Given the joint values for a joint, compute the corresponding transform. The computed transform is gu...
unsigned int getStateSpaceDimension() const override
Get the dimension of the state space that corresponds to this joint.
bool harmonizePosition(double *values, const Bounds &other_bounds) const override
void getVariableDefaultPositions(double *values, const Bounds &other_bounds) const override
Provide a default value for the joint given the joint variable bounds. Most joints will use the defau...
EIGEN_MAKE_ALIGNED_OPERATOR_NEW RevoluteJointModel(const std::string &name, size_t joint_index, size_t first_variable_index)
bool isContinuous() const
Check if this joint wraps around.
void interpolate(const double *from, const double *to, const double t, double *state) const override
Computes the state that lies at time t in [0, 1] on the segment that connects from state to to state....
double distance(const double *values1, const double *values2) const override
Compute the distance between two joint states of the same model (represented by the variable values).
void setAxis(const Eigen::Vector3d &axis)
Set the axis of rotation.
const Eigen::Vector3d & getAxis() const
Get the axis of rotation.
void getVariableRandomPositions(random_numbers::RandomNumberGenerator &rng, double *values, const Bounds &other_bounds) const override
Provide random values for the joint variables (within specified bounds). Enough memory is assumed to ...
bool enforcePositionBounds(double *values, const Bounds &other_bounds) const override
Force the specified values to be inside bounds and normalized. Quaternions are normalized,...
bool satisfiesPositionBounds(const double *values, const Bounds &other_bounds, double margin) const override
Check if the set of position values for the variables of this joint are within bounds,...
void setContinuous(bool flag)
Core components of MoveIt.
Main namespace for MoveIt.