Skip to content

Commit

Permalink
Fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Reber committed Jun 18, 2021
1 parent 5a77251 commit 4c91144
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class CartesianTwist : public CartesianState {
void set_torque(const Eigen::Vector3d& torque) = delete;
void set_wrench(const Eigen::Matrix<double, 6, 1>& wrench) = delete;
CartesianState inverse() const = delete;
CartesianState& operator*=(const CartesianState& twist) = delete;
CartesianState operator*(const CartesianState& twist) = delete;
CartesianState& operator*=(const CartesianState& state) = delete;
CartesianState operator*(const CartesianState& state) = delete;

/**
* @brief Empty constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class CartesianWrench : public CartesianState {
void set_angular_acceleration(const Eigen::Vector3d& angular_acceleration) = delete;
void set_accelerations(const Eigen::Matrix<double, 6, 1>& accelerations) = delete;
CartesianState inverse() const = delete;
CartesianState& operator*=(const CartesianState& twist) = delete;
CartesianState operator*(const CartesianState& twist) = delete;
CartesianState& operator*=(const CartesianState& state) = delete;
CartesianState operator*(const CartesianState& state) = delete;

/**
* @brief Empty constructor
Expand Down

0 comments on commit 4c91144

Please sign in to comment.