8000 Backport PR #21154: Increase marker size in double_pendulum example. · matplotlib/matplotlib@7e7ecfd · GitHub
[go: up one dir, main page]

Skip to content

Commit 7e7ecfd

Browse files
tacaswellmeeseeksmachine
authored andcommitted
Backport PR #21154: Increase marker size in double_pendulum example.
1 parent 4ff96ad commit 7e7ecfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/animation/double_pendulum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def derivs(state, t):
7979
ax.grid()
8080

8181
line, = ax.plot([], [], 'o-', lw=2)
82-
trace, = ax.plot([], [], ',-', lw=1)
82+
trace, = ax.plot([], [], '.-', lw=1, ms=2)
8383
time_template = 'time = %.1fs'
8484
time_text = ax.text(0.05, 0.9, '', transform=ax.transAxes)
8585
history_x, history_y = deque(maxlen=history_len), deque(maxlen=history_len)

0 commit comments

Comments
 (0)
0