8000 Merge pull request #21156 from meeseeksmachine/auto-backport-of-pr-21… · matplotlib/matplotlib@2f1c6d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2f1c6d9

Browse files
authored
Merge pull request #21156 from meeseeksmachine/auto-backport-of-pr-21154-on-v3.5.x
Backport PR #21154 on branch v3.5.x (Increase marker size in double_pendulum example.)
2 parents 4ff96ad + 7e7ecfd commit 2f1c6d9

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