Re-enable mobility graph

This commit is contained in:
DarkPhoenix
2019-06-28 18:31:39 +03:00
parent d195ec7e68
commit 428cb5c888
13 changed files with 109 additions and 88 deletions

View File

@@ -28,14 +28,14 @@ Input = namedtuple('Input', ('handle', 'unit', 'label', 'iconID', 'defaultValue'
VectorDef = namedtuple('VectorDef', ('lengthHandle', 'lengthUnit', 'angleHandle', 'angleUnit', 'label'))
class Graph(metaclass=ABCMeta):
class FitGraph(metaclass=ABCMeta):
# UI stuff
views = []
@classmethod
def register(cls):
Graph.views.append(cls)
FitGraph.views.append(cls)
def __init__(self):
self._plotCache = {}