Skip to content

Commit

Permalink
python: hpp::fcl:: -> coal::
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarpent committed Dec 24, 2024
1 parent 116dfb9 commit 81b145e
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
@@ -1,5 +1,5 @@
//
// Copyright (c) 2022 INRIA
// Copyright (c) 2022-2024 INRIA
//

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

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright (c) 2022 INRIA
// Copyright (c) 2022-2024 INRIA
//

#ifndef __pinocchio_python_collision_tree_broadphase_manager_hpp__
Expand Down

0 comments on commit 81b145e

Please sign in to comment.