Seite RollPitch funktionsfähig gemacht

This commit is contained in:
2025-10-09 14:24:29 +02:00
parent f969df8cb8
commit 7613a5b7cb
3 changed files with 181 additions and 7 deletions

21
graph.py Normal file
View File

@@ -0,0 +1,21 @@
"""
Generische Klasse zum Diagramme-Zeichnen
"""
class Graph():
def __init__(self):
self.title = "Title"
self.subtitle = "Subtitle"
self.title_x = "Title X"
self.title_y = "Title Y"
self.has_arrows = False
def paint(self, ctx):
"""
Output Graph to Cairo context
"""
pass
def add_series(self):
pass