Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 054bae5b authored by usov_i's avatar usov_i
Browse files

Increase marker size on hkl plots

parent f27cffa4
No related branches found
No related tags found
No related merge requests found
...@@ -535,9 +535,9 @@ def create(): ...@@ -535,9 +535,9 @@ def create():
hklmy = np.dot(hklm, y_vert) hklmy = np.dot(hklm, y_vert)
if intensity_flag and max(intensity_vec) != 0: 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: else:
markersize = 4 markersize = 6
if file_flag: if file_flag:
plot_symbol = syms[file_flag_vec[j]] plot_symbol = syms[file_flag_vec[j]]
......
...@@ -339,9 +339,9 @@ class PlotHKL: ...@@ -339,9 +339,9 @@ class PlotHKL:
hklmy = np.dot(hklm, y_vert) hklmy = np.dot(hklm, y_vert)
if intensity_flag: 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: else:
markersize = 4 markersize = 6
if file_flag: if file_flag:
plot_symbol = syms[file_flag_vec[j]] plot_symbol = syms[file_flag_vec[j]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment