Skip to content

Commit 022568a

Browse files
committed
Release v1.5.2
- Correctly output mesh's scale in generated URDF
1 parent 5fd81ac commit 022568a

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set(PROJECT_NAME RBDyn)
1010
set(PROJECT_DESCRIPTION "...")
1111
set(PROJECT_URL "https://github.com/jrl-umi3218/RBDyn")
1212
set(PROJECT_DEBUG_POSTFIX "_d")
13-
set(PROJECT_VERSION 1.5.1)
13+
set(PROJECT_VERSION 1.5.2)
1414
set(PROJECT_USE_CMAKE_EXPORT TRUE)
1515

1616
option(BUILD_RBDYN_PARSERS "Build URDF and YAML parsers" ON)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ sudo apt install librbdyn-dev python-rbdyn python3-rbdyn
3939

4040
## vcpkg
4141

42-
Use the overlay available [here](https://github.com/jrl-umi3218/vcpkg/)
42+
Use the registry available [here](https://github.com/mc-rtc/vcpkg-registry/)
4343

4444

4545
## Homebrew OS X install

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def get_default_options():
1515

1616
class RBDynConan(base.Eigen3ToPythonConan):
1717
name = "RBDyn"
18-
version = "1.5.1"
18+
version = "1.5.2"
1919
description = "Model the dynamics of rigid body systems"
2020
topics = ("robotics", "dynamics", "eigen", "python")
2121
url = "https://github.com/jrl-umi3218/RBDyn"

debian/changelog

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
rbdyn (1.5.1-1ubuntu1) UNRELEASED; urgency=medium
1+
rbdyn (1.5.2-1debian1) unstable; urgency=medium
2+
3+
* Update upstream version
4+
5+
-- Pierre Gergondet <[email protected]> Wed, 18 Aug 2021 11:36:14 +0800
6+
7+
rbdyn (1.5.1-1ubuntu1) unstable; urgency=medium
28

39
* Update upstream version
410

src/parsers/to_urdf.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ std::string to_urdf(const ParserResult & res)
176176
auto node = doc.NewElement("mesh");
177177
const auto mesh = boost::get<Geometry::Mesh>(visual.geometry.data);
178178
node->SetAttribute("filename", mesh.filename.c_str());
179-
set_double(node, "scale", mesh.scale);
179+
set_vec3d(node, "scale", Eigen::Vector3d::Constant(mesh.scale));
180180
geometry_node->InsertEndChild(node);
181181
}
182182
break;

0 commit comments

Comments
 (0)