Open nataliya-dev opened 1 year ago
The RRT Base class requires extend to output a node and an edge. However, the Euclidean RRT class only outputs a node. The following PR adds that extra required output for the example to run.
rrt_base.py: # 3. Extend to subgoal. child_node, edge = self.extend(parent_node, subgoal)
This change is
The RRT Base class requires extend to output a node and an edge. However, the Euclidean RRT class only outputs a node. The following PR adds that extra required output for the example to run.
This change is