-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pydrake] Split MbT inertia bindings into their own file (#21200)
This will help build speed, and is necessary to solve ordering problems with which classes are loaded in what order.
- Loading branch information
1 parent
b3eb0b8
commit b29351f
Showing
4 changed files
with
340 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#pragma once | ||
|
||
/* This file declares some functions that help bind into the | ||
drake.multibody.tree module. | ||
The implementations of these functions are parceled out into various *.cc | ||
files as indicated in each function's documentation. */ | ||
|
||
#include "drake/bindings/pydrake/pydrake_pybind.h" | ||
|
||
namespace drake { | ||
namespace pydrake { | ||
namespace internal { | ||
|
||
/* Defines bindings per tree_py_inertia.cc. */ | ||
void DefineTreeInertia(py::module m); | ||
|
||
// TODO(jwnimmer-tri) Add more functions here as we continue to split up the | ||
// tree_py.cc file into difference pieces. | ||
|
||
} // namespace internal | ||
} // namespace pydrake | ||
} // namespace drake |
Oops, something went wrong.