diff --git a/plots/3Danimation.mp4 b/plots/3Danimation.mp4 index 487a88e008e2a0e62fe05241cf1bd5711d5165b4..645d7bb41cd521fb4fa9b08e2a091c9a252dc3d2 100644 Binary files a/plots/3Danimation.mp4 and b/plots/3Danimation.mp4 differ diff --git a/plots/3Danimation.py b/plots/3Danimation.py index 025a1c60653aff9291311ac9fc42cc3ddfcdce4f..18738aa8f6720e3e8ea0286e16b5f181d42240b4 100644 --- a/plots/3Danimation.py +++ b/plots/3Danimation.py @@ -22,7 +22,7 @@ def animate(i): yi = y[i*N:(i+1)*N] zi = z[i*N:(i+1)*N] ax.cla() - ax.scatter3D(xi, yi, s=0.05) + ax.scatter3D(xi, yi, s=1, edgecolor="none") ax.set_xlim(-1, 1) ax.set_ylim(-1, 1) ax.set_zlim(-1, 1) diff --git a/plots/animation.mp4 b/plots/animation.mp4 index 6e09faa98c137cbbf8b4235a1828e2c3fcb465d7..5079226ac3ff3e1eeff286c20d7ea694e2294a51 100644 Binary files a/plots/animation.mp4 and b/plots/animation.mp4 differ diff --git a/plots/animation.py b/plots/animation.py index f6dd47cdaa243f7c7cd2ad225b41469b352ae461..fbf86283166f97fc480e86c7c0b424d1fbe75e33 100644 --- a/plots/animation.py +++ b/plots/animation.py @@ -19,7 +19,7 @@ def animate(i): xi = x[i*N:(i+1)*N] yi = y[i*N:(i+1)*N] plt.cla() - plt.scatter(xi, yi, s=0.1) + plt.scatter(xi, yi, s=1, edgecolor="none") # plt.scatter(np.sum(xi)/N, np.sum(yi)/N, s=1, c="red") plt.xlabel("x") plt.ylabel("y") diff --git a/plots/treeplot.png b/plots/treeplot.png index 840565d679c2227e91ddda273e7d5fe33b8101f8..8dc95f833144bbc447e59a7fbdaa5d29cce97a6d 100644 Binary files a/plots/treeplot.png and b/plots/treeplot.png differ diff --git a/plots/treeplot.py b/plots/treeplot.py index db5d2d225dbc98a516cf4178d48f7579a0ec584c..00398454797ca9639197523d4e1af086890f93f4 100644 --- a/plots/treeplot.py +++ b/plots/treeplot.py @@ -11,7 +11,7 @@ y = pos[:,3] fig, ax = plt.subplots() # ax.scatter(tree[:,0], tree[:,1], color='r', s=0.1) -ax.scatter(x, y, color='b', s=0.1) +ax.scatter(x, y, color='b', edgecolor="none", s=1) for i in range(tree.shape[0]): size = tree[i,3]