Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 02ccfdc

Browse files
authored
Merge pull request #21154 from anntzer/dpm
DOC: Increase marker size in double_pendulum example.
2 parents eca6a83 + 31629e8 commit 02ccfdc

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)