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

import matplotlib.pyplot as plt
import rospy
import tkinter as tk


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


plt.show()