Results 3 comments of glanois

@petdance says > Please tell me about how you would use this. space-track.org publishes satellite orbital elements (3 lines per satellite - first line is the name, and the 2nd...

@benmoran56 - THANKS - that works. ``` import sys import pyglet class LineWindow(pyglet.window.Window): def __init__(self, *args, **kwargs): super(LineWindow, self).__init__(*args, **kwargs) self._zoom = 1.0 self._frame = 0 pyglet.clock.schedule_interval(self.update, 1.0/60.0) def on_resize(self,...

Thanks again! Works as expected now.