Skip to content

Commit

Permalink
use correct DH parameters for e-series
Browse files Browse the repository at this point in the history
  • Loading branch information
Victorlouisdg committed Mar 16, 2024
1 parent 31fc34b commit afca898
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "ur_analytic_ik"
version = "0.0.4"
version = "0.0.5"
description = "C++ implementation with Python bindings of analytic forward and inverse kinematics for the Universal Robots."
readme = "README.md"
requires-python = ">=3.8"
Expand Down
12 changes: 6 additions & 6 deletions src/ur_analytic_ik/dh_parameters.hh
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ const double alpha5 = -M_PI_2;
#pragma once

namespace ur3e {
const double d1 = 0.1519;
const double d4 = 0.11235;
const double d1 = 0.15185;
const double d4 = 0.13105;
const double d5 = 0.08535;
const double d6 = 0.0819;
const double a2 = -0.24365;
const double a3 = -0.21325;
const double d6 = 0.0921;
const double a2 = -0.24355;
const double a3 = -0.2132;
} // namespace ur3e

namespace ur5e {
Expand All @@ -23,7 +23,7 @@ const double d4 = 0.1333;
const double d5 = 0.0997;
const double d6 = 0.0996;
const double a2 = -0.425;
const double a3 = -0.39225;
const double a3 = -0.3922;
} // namespace ur5e

namespace ur10e {
Expand Down

0 comments on commit afca898

Please sign in to comment.