예제 #1
0
ompl::base::State* ompl::base::SE3StateSpace::allocState() const
{
    auto *state = new StateType();
    allocStateComponents(state);
    return state;
}
예제 #2
0
ompl::base::State* ompl::base::SE2StateSpace::allocState(void) const
{
    StateType *state = new StateType();
    allocStateComponents(state);
    return state;
}