15 #ifndef NAV2_MPPI_CONTROLLER__MODELS__PATH_HPP_
16 #define NAV2_MPPI_CONTROLLER__MODELS__PATH_HPP_
18 #include <xtensor/xtensor.hpp>
20 namespace mppi::models
29 xt::xtensor<float, 1> x;
30 xt::xtensor<float, 1> y;
31 xt::xtensor<float, 1> yaws;
38 x = xt::zeros<float>({size});
39 y = xt::zeros<float>({size});
40 yaws = xt::zeros<float>({size});
Path represented as a tensor.
void reset(unsigned int size)
Reset path data.