master > master: src - Formatierung von Plots

This commit is contained in:
RD 2022-10-20 22:15:58 +02:00
parent 55562889eb
commit 8ece98121d

View File

@ -30,7 +30,8 @@ T2 = TypeVar('T2');
SCALE = (1., 4.); SCALE = (1., 4.);
OFFSET = (3., 0.); OFFSET = (3., 0.);
MARGIN = 0.1; HMARGIN = 0.1;
VMARGIN = 0.2;
N_RESOLUTION = 100; N_RESOLUTION = 100;
ANNOTATE_OFFSET = (0, 10); ANNOTATE_OFFSET = (0, 10);
FONTSIZE_PTS = 10; FONTSIZE_PTS = 10;
@ -84,9 +85,10 @@ class Functions:
'horizontalalignment': 'center', 'horizontalalignment': 'center',
'color': 'forestgreen', 'color': 'forestgreen',
}); });
axs.set_facecolor((0.9,0.9,0.9))
mplot.xlabel(''); mplot.xlabel('');
mplot.ylabel(''); mplot.ylabel('');
mplot.margins(x=MARGIN, y=MARGIN); mplot.margins(x=HMARGIN, y=VMARGIN);
origin = np.asarray((0., 0.)); origin = np.asarray((0., 0.));
offset = np.asarray(OFFSET); offset = np.asarray(OFFSET);