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

import matplotlib.pyplot as plt


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


plt.show()