Repeated subplots in plot.py file
Opened this issue · 0 comments
kevinqyh0827 commented
Hi, there,
When I was running the example of RRT* star methods, the visualization result has the problem that multiple axes exist at the same time as shown below.
To fix that, a possible solution is:
- Locate the plotEnv() function at /utlils/plot/plot.py
- Comment line 54 since it creates another subplot.
- Change the "ax" from line 57, 66, 75 to "self.ax" to reuse the already existed subplots.