Increase marker size on hkl plots

This commit is contained in:
usov_i 2023-03-03 14:34:13 +01:00
parent f27cffa4f8
commit 054bae5b27
2 changed files with 4 additions and 4 deletions

View File

@ -535,9 +535,9 @@ def create():
hklmy = np.dot(hklm, y_vert)
if intensity_flag and max(intensity_vec) != 0:
markersize = max(1, int(intensity_vec[j] / max(intensity_vec) * 20))
markersize = max(6, int(intensity_vec[j] / max(intensity_vec) * 30))
else:
markersize = 4
markersize = 6
if file_flag:
plot_symbol = syms[file_flag_vec[j]]

View File

@ -339,9 +339,9 @@ class PlotHKL:
hklmy = np.dot(hklm, y_vert)
if intensity_flag:
markersize = max(1, int(intensity_vec[j] / max(intensity_vec) * 20))
markersize = max(6, int(intensity_vec[j] / max(intensity_vec) * 30))
else:
markersize = 4
markersize = 6
if file_flag:
plot_symbol = syms[file_flag_vec[j]]