Skip to content

Commit

Permalink
Merge pull request #32 from scmanjarrez/master
Browse files Browse the repository at this point in the history
Changed linewidth to 0.1 when binary=False
  • Loading branch information
dvgodoy committed Jan 9, 2023
2 parents 4bb6899 + 9686b9f commit a1f25c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plots/chapter8.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def counter_vs_clock(basic_corners=None, basic_colors=None, basic_letters=None,
if draw_arrows:
alpha = 0.3 if ((start in targets) or (end in targets)) else 1.0
line = axs[is_clock].plot(*arrow_coords.T, c=color, lw=0 if draw_arrows else 2,
alpha=alpha, linestyle='--' if alpha < 1 else '-')[0]
alpha=alpha, linestyle='--' if (alpha < 1) and (not draw_arrows) else '-')[0]
if draw_arrows:
add_arrow(line, lw=3, alpha=alpha)

Expand Down

0 comments on commit a1f25c8

Please sign in to comment.