diff --git a/telemetry/code/monitor/graph_plotter.py b/telemetry/code/monitor/graph_plotter.py index 69f5ccf..202fe9b 100755 --- a/telemetry/code/monitor/graph_plotter.py +++ b/telemetry/code/monitor/graph_plotter.py @@ -19,17 +19,8 @@ window = pyglet.window.Window() window.set_caption("Test graph") starttime = time.time() - -title = pyglet.text.Label('Test Graph', - font_name='Arkhip', - font_size=12, - x=window.width//2, y=window.height//2, - anchor_x='center', anchor_y='top') -def round_sig(x, sig=2): - return round(x, sig-int(math.floor(math.log10(abs(x))))-1) - def drawgrid(xlines, ylines, xlimits, ylimits): pyglet.gl.glColor4f(0.5, 0.5, 0.5, 1.0) for xpos in range(0, window.width, window.width/xlines): -- libgit2 0.21.2