diff --git a/waypoint_manager/scripts/test.py b/waypoint_manager/scripts/test.py new file mode 100644 index 0000000..618fa06 --- /dev/null +++ b/waypoint_manager/scripts/test.py @@ -0,0 +1,11 @@ +#!/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()