From c1f490aca9616e4fe8446ae91c128a250fd99cf6 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Wed, 22 Sep 2021 18:24:58 +0200 Subject: [PATCH] Increase marker size in double_pendulum example. The pixel-sized marker previously use (",") was so small that it looked more like a rendering artefact than an actual data point. --- examples/animation/double_pendulum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/animation/double_pendulum.py b/examples/animation/double_pendulum.py index d497c1e24d83..8f50f6cb195d 100644 --- a/examples/animation/double_pendulum.py +++ b/examples/animation/double_pendulum.py @@ -79,7 +79,7 @@ def derivs(state, t): ax.grid() line, = ax.plot([], [], 'o-', lw=2) -trace, = ax.plot([], [], ',-', lw=1) +trace, = ax.plot([], [], '.-', lw=1, ms=2) time_template = 'time = %.1fs' time_text = ax.text(0.05, 0.9, '', transform=ax.transAxes) history_x, history_y = deque(maxlen=history_len), deque(maxlen=history_len)