Skip to content

Commit

Permalink
THD graph color update
Browse files Browse the repository at this point in the history
  • Loading branch information
F33RNI committed Dec 21, 2022
1 parent 92998fd commit 32c53b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GraphPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def plots_prepare(self, recording_channels):
plot_color_level \
= int(255 - (channel_n / recording_channels) * 255), int((channel_n / recording_channels) * 255), 0
plot_color_distortion \
= int(255 - (channel_n / recording_channels) * 255), int((channel_n / recording_channels) * 255), 127
= int(127 - (channel_n / recording_channels) * 127), int((channel_n / recording_channels) * 127), 127
# Levels
self.graph_curves_frequency_responses.append(
self.frequency_response_plotter.plot(pen=mkPen(color=plot_color_level),
Expand Down

0 comments on commit 32c53b8

Please sign in to comment.