- 3.0.2 rigid body dynamics module.
FloatingBaseTransforms.h
Go to the documentation of this file.
1 /**********************************************************************************************************************
2 This file is part of the Control Toolbox (https://github.com/ethz-adrl/control-toolbox), copyright by ETH Zurich.
3 Licensed under the BSD-2 license (see LICENSE file in main directory)
4 **********************************************************************************************************************/
5 
6 #pragma once
7 
8 #include <memory>
9 
10 namespace ct {
11 namespace rbd {
12 
13 template <class RBD>
15 {
16 public:
17  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
18 
19  FloatingBaseTransforms(std::shared_ptr<RBD> rbdContainer) : rbdContainer_(rbdContainer) {}
21 
22 
23 private:
24  std::shared_ptr<RBD> rbdContainer_;
25 };
26 
27 } /* namespace rbd */
28 } /* namespace ct */
virtual ~FloatingBaseTransforms()
Definition: FloatingBaseTransforms.h:20
EIGEN_MAKE_ALIGNED_OPERATOR_NEW FloatingBaseTransforms(std::shared_ptr< RBD > rbdContainer)
Definition: FloatingBaseTransforms.h:19
Definition: FloatingBaseTransforms.h:14