Skip to content

Commit 0f1d998

Browse files
authored
Merge pull request #2530 from jcarpent/topic/coal
Fix var naming in Python
2 parents 69f8b2e + ed1461c commit 0f1d998

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
### Fixed
1010
- Fix mjcf Euler angle parsing: use xyz as a default value for eulerseq compiler option ([#2526](https://github.com/stack-of-tasks/pinocchio/pull/2526))
11+
- Fix variable naming in Python ([#2530](https://github.com/stack-of-tasks/pinocchio/pull/2530))
1112
- Fix aba explicit template instantiation ([#2541](https://github.com/stack-of-tasks/pinocchio/pull/2541))
1213
- Add parsing meshes with vertices for MJCF format ([#2537](https://github.com/stack-of-tasks/pinocchio/pull/2537))
1314
- CMake: fix RPATH on macos ([#2546](https://github.com/stack-of-tasks/pinocchio/pull/2546))
1415
- Fix aba explicit template instantiation ([#2541](https://github.com/stack-of-tasks/pinocchio/pull/2541))
1516
- Fix mjcf parsing of keyframe qpos with newlines ([#2535](https://github.com/stack-of-tasks/pinocchio/pull/2535))
1617

18+
1719
## [3.3.1] - 2024-12-13
1820

1921
### Added

include/pinocchio/bindings/python/collision/broadphase-manager.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2022 INRIA
2+
// Copyright (c) 2022-2024 INRIA
33
//
44

55
#ifndef __pinocchio_python_collision_broadphase_manager_hpp__
@@ -62,10 +62,10 @@ namespace pinocchio
6262
static void expose()
6363
{
6464
std::string derived_name = boost::typeindex::type_id<Derived>().pretty_name();
65-
boost::algorithm::replace_all(derived_name, "hpp::fcl::", "");
65+
boost::algorithm::replace_all(derived_name, "coal::", "");
6666
const std::string class_name = "BroadPhaseManager_" + derived_name;
6767

68-
const std::string class_doc = "Broad phase manager associated to hpp::fcl::" + derived_name;
68+
const std::string class_doc = "Broad phase manager associated to coal::" + derived_name;
6969
bp::class_<Self> registered_class(class_name.c_str(), class_doc.c_str(), bp::no_init);
7070
registered_class.def(BroadPhaseManagerPythonVisitor());
7171

include/pinocchio/bindings/python/collision/tree-broadphase-manager.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2022 INRIA
2+
// Copyright (c) 2022-2024 INRIA
33
//
44

55
#ifndef __pinocchio_python_collision_tree_broadphase_manager_hpp__
@@ -49,11 +49,11 @@ namespace pinocchio
4949
static void expose()
5050
{
5151
std::string derived_name = boost::typeindex::type_id<Derived>().pretty_name();
52-
boost::algorithm::replace_all(derived_name, "hpp::fcl::", "");
52+
boost::algorithm::replace_all(derived_name, "coal::", "");
5353
const std::string class_name = "TreeBroadPhaseManager_" + derived_name;
5454

5555
const std::string class_doc =
56-
"Tree-based broad phase manager associated to hpp::fcl::" + derived_name;
56+
"Tree-based broad phase manager associated to coal::" + derived_name;
5757
bp::class_<Self> registered_class(class_name.c_str(), class_doc.c_str(), bp::no_init);
5858
registered_class.def(TreeBroadPhaseManagerPythonVisitor());
5959

0 commit comments

Comments
 (0)