Newer
Older
waypoint_navigation / waypoint_manager / scripts / test.py
@koki koki on 3 Aug 2022 181 bytes update
#!/usr/bin/env python

import matplotlib.pyplot as plt
import rospy


fig = plt.figure("Test")
axes = plt.subplot(1,1,1)
axes.plot(1,1, "b", marker=".", markersize=10)


plt.show()