Skip to content

Commit 5f3b156

Browse files
committed
[dqrobotics_module.h, cpp] Updated the file to include the DQ_FreeFlyingRobot class.
1 parent 4f03a94 commit 5f3b156

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/dqrobotics_module.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ PYBIND11_MODULE(_dqrobotics, m) {
109109
//DQ_SerialWholeBody
110110
init_DQ_SerialWholeBody_py(robot_modeling);
111111

112+
//DQ_FreeFlyingRobot
113+
init_DQ_FreeFlyingRobot_py(robot_modeling);
114+
112115
/*****************************************************
113116
* Solvers <dqrobotics/solvers/...>
114117
* **************************************************/

src/dqrobotics_module.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
(C) Copyright 2019 DQ Robotics Developers
2+
(C) Copyright 2019-2023 DQ Robotics Developers
33
44
This file is part of DQ Robotics.
55
@@ -46,6 +46,7 @@ namespace py = pybind11;
4646
#include <dqrobotics/robot_modeling/DQ_DifferentialDriveRobot.h>
4747
#include <dqrobotics/robot_modeling/DQ_WholeBody.h>
4848
#include <dqrobotics/robot_modeling/DQ_SerialWholeBody.h>
49+
#include <dqrobotics/robot_modeling/DQ_FreeFlyingRobot.h>
4950

5051
#include <dqrobotics/robot_control/DQ_KinematicController.h>
5152
#include <dqrobotics/robot_control/DQ_KinematicConstrainedController.h>
@@ -95,6 +96,7 @@ void init_DQ_DifferentialDriveRobot_py(py::module& m);
9596
void init_DQ_CooperativeDualTaskSpace_py(py::module& m);
9697
void init_DQ_WholeBody_py(py::module& m);
9798
void init_DQ_SerialWholeBody_py(py::module& m);
99+
void init_DQ_FreeFlyingRobot_py(py::module& m);
98100

99101
//dqrobotics/robot_control
100102
void init_DQ_ClassicQPController_py(py::module& m);

0 commit comments

Comments
 (0)