1#ifndef ROBOTOC_COM_REF_BASE_HPP_
2#define ROBOTOC_COM_REF_BASE_HPP_
53 Eigen::VectorXd& com_ref) const = 0;
Base class of reference position of the center of mass (CoM).
Definition: com_ref_base.hpp:15
CoMRefBase(const CoMRefBase &)=default
Default copy constructor.
CoMRefBase & operator=(const CoMRefBase &)=default
Default copy operator.
virtual void updateRef(const GridInfo &grid_info, Eigen::VectorXd &com_ref) const =0
Computes the reference CoM position.
virtual ~CoMRefBase()
Destructor.
Definition: com_ref_base.hpp:25
CoMRefBase()
Default constructor.
Definition: com_ref_base.hpp:20
CoMRefBase(CoMRefBase &&) noexcept=default
Default move constructor.
virtual bool isActive(const GridInfo &grid_info) const =0
Checks wheather the cost is active or not for the given grid info.
Definition: constraint_component_base.hpp:17
Grid information.
Definition: grid_info.hpp:24